[ memanto / blog ]

Field notes from a memory agent in production.

Engineering deep dives and tutorials on building, scaling, and shipping AI agents that remember. Written by the team behind Memanto.

16posts11deep dives5tutorials~10avg min read
ALL POSTS · NEWEST FIRST16 results
Your Agents' Memory, Now in Your Obsidian Vault
TutorialsSep 18· 6 min read

Your Agents' Memory, Now in Your Obsidian Vault

The Memanto plugin for Obsidian turns what your coding agents have learned into notes you can read, link, query and question, right next to the rest of your thinking. Here is what it does and how to set it up in about five minutes.

Hetkumar PatelSoftware Developer
PREVIEWOBSIDIAN · 6-min deep dive · published Sep 18
Move Your Mem0 Memories to Memanto in One Command
TutorialsSep 10· 16 min read

Move Your Mem0 Memories to Memanto in One Command

A complete account of what `memanto migrate mem0` does to your data: the endpoints it reads, how a Mem0 category becomes a typed Memanto memory, what the dry run shows before a single write, and what changes on the other side. The case for moving is built entirely from Mem0's own documentation.

Hetkumar PatelSoftware Developer
PREVIEWMIGRATION · 16-min deep dive · published Sep 10
The Four Kinds of Agent Memory, and What Actually Stores Each One
EngineeringSep 3· 12 min read

The Four Kinds of Agent Memory, and What Actually Stores Each One

Working, episodic, semantic, procedural. Every agent framework now cites the same four boxes, borrowed from cognitive science by way of SOAR and CoALA. Here is what each one really is inside an LLM agent, the failure mode specific to each, and how the four map onto Memanto’s 13 semantic types and its retention policy.

Hetkumar PatelSoftware Developer
PREVIEWMEMORY TYPES · 12-min deep dive · published Sep 3
Your Traces Already Know What Broke. Your Agent Doesn’t.
EngineeringAug 12· 9 min read

Your Traces Already Know What Broke. Your Agent Doesn’t.

Langfuse records what went wrong. Memanto remembers the lesson. Inside the new langfuse-memanto integration: why 812 observations collapse into 2 memories, why grouping by error signature is the entire trick, and what a span processor can and cannot see.

Hetkumar PatelSoftware Developer
PREVIEWLANGFUSE · 9-min deep dive · published Aug 12
Memory Is a Job, Not a Dump
EngineeringJul 30· 9 min read

Memory Is a Job, Not a Dump

The five verbs your agents shouldn't be doing — curate, reconcile, consolidate, brief, provision — and how Memanto performs each one as a companion memory agent running alongside your fleet.

Dr. Majid FekriCTO
PREVIEWMEMORY AGENT · 9-min deep dive · published Jul 30
Your Agent's Memory Shouldn't Die With Your Vendor
EngineeringJul 20· 7 min read

Your Agent's Memory Shouldn't Die With Your Vendor

Why we made Open Knowledge Format a native citizen of Memanto and why memory portability is the next fight worth having.

Dr. Majid FekriCTO
PREVIEWOKF · 7-min deep dive · published Jul 20
The Practical Course: Build Agentic Memory That Keeps Your Loops Alive  And Sharpens Them Every Run
TutorialsJul 9· 18 min read

The Practical Course: Build Agentic Memory That Keeps Your Loops Alive And Sharpens Them Every Run

A hands-on course on agentic memory: first make your loop survive long runs, then make it compound across them. Every step ships with copy-paste Memanto commands - typed remember/recall, session handoffs, structured failure records, and a reuse loop that makes each run start smarter than the last.

Dr. Majid FekriCTO
PREVIEWAGENT MEMORY · 18-min deep dive · published Jul 9
What 50+ Pull Requests Taught Us About Agentic Skills: Reviewing the Matt Pocock Bounty
EngineeringJun 23· 9 min read

What 50+ Pull Requests Taught Us About Agentic Skills: Reviewing the Matt Pocock Bounty

After reviewing over 50 PRs, diving into different architectural decisions, and testing various implementations, here is what we learned and whose implementation stood out.

Rasa RahnemaSoftware Developer
PREVIEWARCHITECTURE · 9-min deep dive · published Jun 23
Memanto On-Prem: Your Agents' Memory, Entirely on Your Own Hardware
EngineeringJun 12· 8 min read

Memanto On-Prem: Your Agents' Memory, Entirely on Your Own Hardware

Memanto now runs fully on your own infrastructure — powered by a local Moorcheh on-prem server in Docker. No API key, no data leaving your environment, and zero per-request cost with local Ollama models.

Hetkumar PatelSoftware Developer
PREVIEWON-PREM · 8-min deep dive · published Jun 12
Adding Persistent Memory to CrewAI with Memanto
TutorialsMay 25· 6 min read

Adding Persistent Memory to CrewAI with Memanto

CrewAI agents forget everything the moment your script finishes. The new crewai-memanto package gives your crew shared, long-term memory that survives across sessions, scripts, and tools — through native remember, recall, and answer tools.

Rasa RahnemaSoftware Developer
PREVIEWCREWAI · 6-min deep dive · published May 25
Recall, Recency, and Relevance: How Memanto Finds Only the Exact Memory Your Agent Needs
EngineeringMay 22· 10 min read

Recall, Recency, and Relevance: How Memanto Finds Only the Exact Memory Your Agent Needs

Instead of dumping everything into an agent’s context, Memanto retrieves the single, most useful memory for the current task using typed recall, temporal queries, and differential retrieval.

Hetkumar PatelSoftware Developer
PREVIEWRECALL · 10-min deep dive · published May 22
How Memanto Detects and Resolves Contradictory Memories
EngineeringMay 12· 9 min read

How Memanto Detects and Resolves Contradictory Memories

AI agents accumulate knowledge over time. That knowledge will eventually contradict itself. Memanto detects when new information conflicts with existing knowledge, surfaces the conflict, and provides structured tools to resolve it explicitly.

Hetkumar PatelSoftware Developer
PREVIEWCONFLICT RESOLUTION · 9-min deep dive · published May 12
What Memanto Actually Stores: All 13 Memory Types Explained
EngineeringMay 4· 9 min read

What Memanto Actually Stores: All 13 Memory Types Explained

Not all context is the same. Memanto organizes every memory into one of 13 semantic types, each captured, retrieved, and surfaced differently. Here is what each type stores, why it exists, and when to use it.

Hetkumar PatelSoftware Developer
PREVIEWMEMORY · 9-min deep dive · published May 4
One Memory Agent, Every Tool: Connect Memanto Across Your Entire Dev Stack
TutorialsMay 4· 10 min read

One Memory Agent, Every Tool: Connect Memanto Across Your Entire Dev Stack

Your AI coding assistants forget everything between sessions. Here's how to wire Memanto into Claude Code, Cursor, Windsurf, and Cline simultaneously, so every tool knows your preferences, past decisions, and recurring errors.

Hetkumar PatelSoftware Developer
PREVIEWTUTORIAL · 10-min deep dive · published May 4
Why We Don't Use HNSW For Agent Memory Search
EngineeringApr 22· 8 min read

Why We Don't Use HNSW For Agent Memory Search

Standard vector databases lean on knowledge graphs and parallel pipelines to compensate for HNSW's approximate search. Information-Theoretic Scoring removes the need for both, and matches hybrid systems on every public benchmark.

Rasa RahnemaSoftware Developer
PREVIEWARCHITECTURE · 8-min deep dive · published Apr 22
Stop Overengineering Agentic Memory: How Basic RAG Outperforms the Leading Memory Frameworks
EngineeringMar 26· 8 min read

Stop Overengineering Agentic Memory: How Basic RAG Outperforms the Leading Memory Frameworks

Why complex graph-based memory architectures may be overkill, and how a highly-optimized RAG pipeline hits 89.8% on LongMemEval and 87.1% on LoCoMo with vector-only retrieval, no graph database, no multi-query orchestration.

Rasa RahnemaSoftware Developer
PREVIEWBENCHMARK · 8-min deep dive · published Mar 26