DeltaMemory: Giving AI Agents a "Real Brain"
2026-02-27 | Product Hunt | Official Site | HN Discussion

Product Interface: A dark-themed dashboard with the brand slogan "Memory that scales with your ambition" on the left and standard login/signup on the right. The design is enterprise-grade—clean and professional without unnecessary fluff.

Core Interface: The Memories management panel shows fields like Content, Type (Fact/Conversation), Salience (score), Score, and Timestamp for each memory. This is the core selling point—compressing conversations into structured facts that are stored and decayed based on weight.
30-Second Quick Judgment
What is this?: It adds a "cognitive memory" layer to AI Agents, allowing them to remember user preferences, history, and key facts across different sessions. It’s not RAG or a vector DB; it’s a memory layer that compresses dialogue into a knowledge graph + structured facts.
Is it worth watching?: Yes, but don't rush in just yet. The direction is spot on—2026 is being called the "Year of the AI Agent Memory Layer," with even ICLR hosting dedicated MemAgents workshops. However, DeltaMemory is brand new (the HN post is only 13 hours old), has no public pricing, no community feedback, and its 89% LoCoMo accuracy claim needs independent verification. If you're building an Agent and hitting memory walls, apply to be a design partner; if you're just curious, keep an eye on Mem0 (which is more mature) for now.
Three Questions That Matter
Is it relevant to me?
Who is the target user?: Dev teams running AI Agents in production—those building customer service bots, sales AI, or medical assistants. Basically, any scenario where "your Agent needs to remember who the user is."
Am I the target? If you fit any of these, yes:
- You're building an AI app that needs to remember user preferences across sessions.
- You find yourself "re-introducing" yourself to the AI at the start of every chat.
- Your Agent starts getting "amnesia" after the 20th message.
- You're using RAG but realize it only retrieves documents and doesn't actually "remember" the conversation.
Common use cases:
- Sales AI: Remembers a client said "budget is in Q2" and follows up automatically.
- Medical Assistant: Tracks patient medication history and allergies.
- Educational AI: Remembers which concepts a student struggles with and adjusts difficulty.
- Customer Service: Recalls previous tickets, preferences, and solutions for a specific user.
Is it useful for me?
| Dimension | Benefit | Cost |
|---|---|---|
| Time | Compresses 26M tokens into 7K facts; no need to re-process history every time. | ~30 mins to integrate the SDK, but there's currently a waitlist for design partners. |
| Money | Claims to be 97% cheaper than raw token re-processing; compares well to Mem0 Pro's $249/mo graph memory. | No public pricing; enterprise products usually aren't cheap. |
| Effort | No need to build your own embedding pipeline, vector DB, or knowledge graph. | New product; documentation and community are still under construction. |
ROI Judgment: If you're using Mem0's free tier but need graph memory (which costs $249/mo), or if building your own memory system is giving you a headache, DeltaMemory is worth an application. But if your Agent is still in the MVP stage, stick with Mem0's free 10K memories for now and compare once DeltaMemory goes public with pricing.
What's the "Wow" factor?
The Highlights:
- Salience Decay: This is the coolest feature—it lets the AI "forget" gradually like a human. It doesn't store everything forever; unimportant memories naturally decay. This solves a real problem where most systems store everything until the context becomes bloated and useless.
- One SDK Call: No need to set up embedding pipelines or manage infrastructure. Install → Init → Ingest/Recall. Done in three steps.
- 50ms p50 Latency: If they can actually hit this, it's 16x faster than Mem0, which is a game-changer for real-time chat.
The "Aha!" Moment:
"26M tokens become 7K" — Compressing 26 million tokens of chat history into 7,000 structured facts is a compression ratio that really turns heads.
Community Voice (HN discussion just started, no Twitter buzz yet):
The product is too new for verified user reviews. The HN post is only 13 hours old, and Twitter/X searches return zero results. This is both a risk (unverified) and an opportunity (early design partners usually get the best support).
For Independent Developers
Tech Stack
- Core Engine: Rust (closed-source), sub-millisecond operations, crash recovery.
- SDK: TypeScript (
@deltamemory/ai-sdkv0.5.1, open-source on npm). - AI/Models: Automated fact extraction + KG construction (specific models not disclosed).
- Infrastructure: Managed cloud or VPC self-deployment options.
- Integrations: Vercel AI SDK, LangChain, CrewAI, n8n.
Core Implementation
DeltaMemory does three things:
- Fact Extraction: Pulls structured facts from raw dialogue, de-duplicates, and builds user profiles.
- Knowledge Graph: Organizes facts into a graph, supporting multi-hop reasoning (87.5% accuracy).
- Salience Decay: Assigns a "salience" score to each fact that decays over time, letting trivial info fade away.
Technically, the innovation is shifting "memory" from "store everything" to a cognitive process of "Extract → Compress → Weight → Decay." This is much closer to how human memory actually works.
Open Source Status
- Is it open?: Semi-open—SDKs and integrations are open, but the core Rust engine is proprietary.
- Similar Open Source Projects: Mem0 (Apache 2.0, 41K stars), Letta (Full agent runtime + memory), Mnemosyne (Cognitive Memory OS).
- Build it yourself?: Hard. A high-performance Rust engine + KG + fact extraction + salience decay would take an estimated 3-4 person-months. You could hack a basic version together in 1-2 months using Python and the open-source version of Mem0.
Business Model
- Monetization: SaaS subscription + Enterprise private deployment.
- Pricing: Not public; currently limited to design partners and enterprise teams.
- User Base: Not disclosed; based on PH/HN activity, it's very early stage.
Big Tech Risk
Medium-High. OpenAI already has a Memory feature in ChatGPT (though its LoCoMo score is only 52.9%), and Google is working on "Nested Learning" to let models modify parameters for memory. However, the giants focus on "general memory," while DeltaMemory focuses on the "Agent infrastructure memory layer." The real threat is Mem0, which already has $24M in funding and massive community traction.
For Product Managers
Pain Point Analysis
- The Problem: AI Agent "amnesia"—forgetting everything once a session ends.
- How much does it hurt?: A lot. On Reddit, this is one of the biggest complaints about AI chatbots: "The first 5-10 messages are great, but by message 20, it's lost." For enterprise Agents (CS, Sales, Med), amnesia means starting from scratch every single time.
User Persona
- Primary: AI engineering teams at mid-to-large enterprises (requiring HIPAA/SOC 2).
- Secondary: Indie devs or small teams building SaaS products.
- Scenario: Any AI application that needs to "know who the user is."
Feature Breakdown
| Feature | Type | Description |
|---|---|---|
| Auto Fact Extraction | Core | Extracts structured facts from dialogue. |
| KG Construction | Core | Organizes relationships between facts. |
| Salience Decay | Core | Progressive forgetting to keep context lean. |
| Observability/Audit | Core | Every memory operation is traceable. |
| Multi-hop Reasoning | Core | Reasoning across multiple memory points. |
| VPC Deployment | Bonus | For enterprise data privacy needs. |
| Multi-tenancy | Bonus | For SaaS scenarios. |
Competitive Differentiation
| vs | DeltaMemory | Mem0 | Zep | Letta |
|---|---|---|---|---|
| Core Edge | Rust Performance + Decay | Most mature, largest ecosystem | Temporal Knowledge Graphs | Full Agent Runtime |
| Graph Memory | Included by default | Requires Pro ($249/mo) | Included by default | None |
| Free Tier | None (Invite only) | 10K memories | Community Edition | Open Source |
| Speed | 50ms p50 (Claimed) | Not disclosed | Not disclosed | Not disclosed |
| Open Source | SDK only | Fully Open | Community Edition | Fully Open |
| Compliance | SOC 2 + HIPAA | SOC 2 + HIPAA | Enterprise only | None |
Key Takeaways
- Salience Decay Design: The idea of letting memory decay naturally rather than hoarding it infinitely is a concept every AI memory team should study.
- Simple SDK Experience: Wrapping a complex memory pipeline into just
ingestandrecalloperations is excellent UX for devs. - Observability First: Making every memory operation traceable is a huge selling point for enterprise clients.
For Tech Bloggers
Founder Story
- Founders: Not public; search results are empty.
- Background: Unknown, but the product description suggests deep AI engineering roots—"We built DeltaMemory because we kept hitting that wall" implies they built this to solve their own problems.
- Motivation: Fed up with memory issues while building their own Agents.
Controversies / Discussion Points
- 89% Accuracy vs Human 88 F1: DeltaMemory claims LoCoMo accuracy exceeding the human baseline, but the metrics might differ. Mem0 and Zep have already sparred over LoCoMo testing methods; DeltaMemory's numbers need third-party validation.
- "Not RAG, Not Vector DB": This is a bold claim. Is it a "new paradigm" or just a clever re-packaging of existing tech?
- The Rust Choice: Using Rust instead of Python for AI infra ensures great performance, but will it limit the ecosystem growth?
Hype Data
- PH Rank: 86 votes (moderate heat).
- HN Discussion: Show HN posted 13 hours ago.
- Twitter: Zero (too new).
- Search Trends: Just starting; no significant volume yet.
Content Suggestions
- Angle: "The AI Agent Memory Wars: From Mem0 to DeltaMemory, who will be the Agent's 'Hippocampus'?"
- Trend Jacking: 2026 is the "Year of AI Memory." Mention the ICLR MemAgents workshop and Mem0's $24M funding to frame DeltaMemory as the new challenger in this hot trend.
For Early Adopters
Pricing Analysis
| Tier | Price | Features | Is it enough? |
|---|---|---|---|
| Free | None | No public free tier | N/A |
| Design Partner | Unknown (Apply) | Full access | Good for validation |
| Enterprise | Unknown (Demo) | Full + VPC + SOC2/HIPAA | Production-ready |
Competitor Pricing Reference:
- Mem0 Free: 10K memories + 1K retrieval/mo (no graph).
- Mem0 Starter: $19/mo, 50K memories.
- Mem0 Pro: $249/mo (includes graph memory).
- MemoClaw: $0.001/operation, pay-as-you-go.
Getting Started
- Time to Hello World: ~30 mins (if you get access).
- Learning Curve: Low (for devs with AI SDK experience).
- Steps:
npm i @deltamemory/ai-sdk- Initialize the client (API key + base URL required).
- Use
deltaMemoryTools()to inject memory into your Agent. - Call
ingest(store) andrecall(retrieve).
Pitfalls & Gripes
- No Public Access: Currently requires booking a demo for design partnership; not friendly to solo devs.
- Zero Community: No Reddit threads, no Twitter reviews, just a fresh HN post. If you hit a bug, you're likely stuck waiting on Discord.
- Benchmark Controversy: The 89% LoCoMo accuracy claim is bold, but the methodology is opaque. In this space, benchmarks are often a point of contention.
Security & Privacy
- Data Storage: Managed cloud or local (VPC) options.
- Privacy Policy: Encrypted memory graph ownership with fine-grained consent controls.
- Audit: SOC 2 + HIPAA ready; full audit trails for every memory operation.
- The Bottom Line: They've done a great job here—data sovereignty and compliance are must-haves for enterprise users.
Alternatives
| Alternative | Pros | Cons |
|---|---|---|
| Mem0 | Most mature, 41K stars, generous free tier, fully open-source. | Graph memory is $249/mo; performance (claimed) is lower than DeltaMemory. |
| Letta | Full agent runtime, open-source. | Heavier than just a memory layer. |
| Zep | Strong temporal KG and memory. | Limited community edition features. |
| MemoClaw | Minimalist API, pure pay-as-you-go. | No graph memory; very simple features. |
| Custom RAG + Vector DB | Total control. | High maintenance; no built-in salience decay. |
For Investors
Market Analysis
- Sector Size: Agentic AI memory market: $6.27B (2025) → $28.45B (2030), CAGR 35.3%.
- The Bigger Picture: Agentic AI market: $9.89B (2026) → $57.42B (2031), CAGR 42.1%.
- Drivers: As Agents move from experiments to production, memory becomes the key layer for trust, differentiation, and long-term value.
Competitive Landscape
| Tier | Players | Positioning |
|---|---|---|
| Leaders | Mem0 ($24M Series A, 41K stars) | General AI memory layer |
| Leaders | Letta (Backed by Felicis) | Agent runtime + memory |
| Mid-tier | Zep | Temporal memory for enterprise |
| New Entrants | DeltaMemory | Rust-based high-performance cognitive memory |
| New Entrants | Mnemosyne, MemoClaw, Supermemory | Niche focus |
| Giants | OpenAI, Google | Built-in model memory |
Timing Analysis
- Why Now?: In 2026, AI model intelligence has jumped 60,000x, but memory has only improved 100x—memory is now the primary bottleneck. ICLR 2026 even added a MemAgents workshop.
- Tech Maturity: KG + fact extraction tech is now mature; a Rust-based high-performance runtime is a logical choice.
- Market Readiness: Enterprise AI Agents are moving from POC to production; the memory layer is the missing piece.
Team Background
- Founders: Not public.
- Core Team: Unknown.
- Track Record: Unknown.
- Risk: The lack of team transparency is a red flag for investors.
Funding Status
- Raised: No public info.
- Competitor Benchmark: Mem0 raised a $24M Series A (YC, Peak XV, Basis Set Ventures) with angels like Dharmesh Shah (HubSpot) and Scott Belsky (Adobe).
Conclusion
DeltaMemory is targeting a real and rapidly growing sector with a compelling technical story (Rust + Salience Decay + Knowledge Graphs). However, the product is extremely new, and everything still needs to be proven in the wild.
| User Type | Recommendation |
|---|---|
| Developers | Wait and see. If you're struggling with Agent memory right now, apply for the design partnership. Otherwise, stick with Mem0's open-source version. |
| Product Managers | Worth watching. The Salience Decay and observability features are great design inspirations. Don't switch your stack yet; wait for verification. |
| Bloggers | Great to write about. The "Year of AI Memory" is a strong hook, and the DeltaMemory vs. Mem0 rivalry makes for good content. |
| Early Adopters | Skip for now. No free tier, no community, no public reviews. Wait for public pricing and at least 100+ user reviews. |
| Investors | Great sector, right timing. But the team is opaque and the product is very early. Requires significant due diligence. |
Resource Links
| Resource | Link |
|---|---|
| Official Site | deltamemory.com |
| Product Hunt | DeltaMemory |
| Hacker News | Show HN |
| NPM SDK | @deltamemory/ai-sdk |
| Competitor: Mem0 | mem0.ai |
| Competitor: Letta | letta.com |
| LoCoMo Benchmark | snap-research/locomo |
| AI Memory Overview | The New Stack |
2026-02-27 | Trend-Tracker v7.3 | DeltaMemory Deep Analysis