← All posts
Teach Your AI to Remember: A One-Hour Agent Memory Workshop
PLATFORM UPDATESApril 16, 2026

Teach Your AI to Remember: A One-Hour Agent Memory Workshop

By Karsten Wade
# Teach Your AI to Remember: A One-Hour Agent Memory Workshop We have all been there. You spend twenty minutes carefully explaining the nuances of your business, your current project, or your client's weird formatting preferences to Claude or Cursor. The AI is brilliant, helpful, and seemingly in sync with your brain. Then, you close the tab. When you return the next morning and ask a follow-up question, that brilliance is gone. The AI has forgotten everything. We invite you to stop settling for a brilliant assistant with total amnesia. In our latest one-hour workshop, we move beyond the frustration of repeating yourself. We aren't here to teach you how to code; we are here to help you cultivate a persistent digital brain for your AI. This is about moving from _working memory_—the fleeting thoughts of a single conversation—to _episodic_ and _semantic_ memory that lasts across days, sessions, and tools. The following guide is a gentle conversion of our _Path 2_ workshop, designed specifically for founders, creatives, and operators who want to use the ZeroDB Cloud API to bridge the memory gap without touching a single line of Docker config.
Workshop Part Focus Area Time
Part 1 The Problem: Why AI Forgets 10 min
Part 2 Setup: 2-Minute Memory Config 15 min
Part 3 Practice: Teaching Your AI 15 min
Part 4 Visualizing: The Dashboard 10 min
Part 5 Implementation: Real-World Patterns 5 min
Part 6 Wrap-Up: Next Steps 5 min
--- ## Part 1: Why Do AI Agents Forget? To solve a problem, we must first understand the grain of the wood we are working with. When you talk to an AI today, it essentially has only _working memory_. Like a human holding a phone number in their head just long enough to dial it, the AI holds your current conversation in its _context window_. Once that window is closed, the memory evaporates. In the workshop, we demonstrate this with a simple test. Imagine you tell Claude: _My name is Jordan, I'm building a candle company, and my best seller is lavender._ Five minutes later, in a new chat, you ask: _What's my best-selling product?_ The AI will apologize. It has no idea who you are or what you sell. Humans navigate the world using three types of memory: 1. **Working memory** — What you are thinking about right now. 2. **Episodic memory** — Events that happened (like that meeting last Tuesday). 3. **Semantic memory** — Facts and knowledge (like the fact that your company sells candles). ZeroMemory is designed to give AI all three. By providing a persistent _second brain_, we enable 100% Recall@1 on the LongMemEval benchmark. While the industry average for retrieval is hovering around 25%, we've engineered a system that finds the right memory, every single time. --- ## Part 2: Give Claude a Memory in 2 Minutes The beauty of the Model Context Protocol (MCP) is that it allows us to bridge systems with a simple copy-and-paste. In this part of the workshop, we connect your AI tool (Claude Code or Cursor) directly to your ZeroDB Cloud project. You simply open your settings and add this configuration: ```json { "mcpServers": { "zerodb-memory": { "command": "npx", "args": ["-y", "ainative-zerodb-memory-mcp"], "env": { "ZERODB_API_URL": "https://api.ainative.studio", "ZERODB_API_KEY": "YOUR_API_KEY", "ZERODB_PROJECT_ID": "YOUR_PROJECT_ID" } } } } ``` Once you restart your tool and ask, _What memory tools do you have?_, you should see six new capabilities appear: - `store_memory` - `search_memory` - `semantic_search` - `get_context` - `embed_text` - `clear_session` Your AI now has the tools to write to and read from its own long-term memory. --- ## Part 3: Teach Your AI About Your Business This is the _aha moment_ where the theory becomes a tool in your hands. We encourage you to talk to your AI naturally. You are not writing code; you are providing the fertile ground for your agent's knowledge to grow. Try telling it something specific: _Remember this: I'm building a subscription box for plant lovers. We ship monthly. Our most popular box is the Jungle Pack at $39/month. We have 340 active subscribers. Our biggest challenge is shipping live plants in summer heat._ Add more layers: _Remember: Our supplier is GreenLeaf Nursery in Watsonville. Lead time is 2 weeks. They give us net-30 terms._ _Remember: Our customer Sarah Kim ordered 12 gift boxes for her company's holiday party last December._ Now, the magic: close the conversation. Start a brand new one. Ask: _What do you know about my business?_ Suddenly, Claude isn't a stranger anymore. It knows about the Jungle Pack, Sarah Kim, and the shipping challenges in Watsonville. It can even draft a re-engagement email for your March promo churn because it remembers the exact 30% churn rate you mentioned earlier. --- ## Part 4: How Memory Actually Works While it feels like magic, there is a rigorous architecture behind it. When you visit the AINative dashboard, you can see these memories being processed in real-time. ZeroMemory doesn't just dump text into a bin. It assigns: - **Importance Scores (0-1)** — The system automatically ranks what matters most. - **Memory Tiers** — Categorizing info into working, episodic, or semantic tiers. - **Entity Extraction** — Identifying names, companies, and dates automatically. - **Timestamps** — Keeping track of when knowledge was acquired. Crucially, ZeroMemory uses _semantic search_. If you search for _summer logistics problems_, the system finds the memory about "shipping live plants in summer heat," even if you never used the word "logistics." It understands the meaning, not just the keywords. --- ## Part 5: Memory Patterns for Real Work Once the foundation is laid, you can apply memory to almost any workflow. Here are three patterns we see our community using every day: **Pattern 1: Client CRM** _Remember: Client Acme Corp. Main contact is Dana. They signed a $5K/month contract in January. Renewal is in July. Dana mentioned they want to add 2 more seats._ Before your next call, your AI can brief you on the exact status of the account. **Pattern 2: Meeting Notes** _Remember: In today's team meeting, we decided to delay the website redesign until after the June launch. Marcus is leading the launch. Budget approved for $8K on paid ads._ Ask your AI next week: _What did we decide about the website?_—and it will have the answer. **Pattern 3: Personal Knowledge Base** _Remember: The best coffee shop to work from in Santa Cruz is Verve on Pacific Ave. They have fast wifi and don't mind laptop campers. Best seat is the back corner by the window._ Your preferences become a permanent part of your assistant's worldview. --- ## Part 6: Wrap-Up & Next Steps By the end of this hour, you've fundamentally changed how you interact with AI. You've moved from a one-off chat to a continuous partnership. **What you learned:** 1. AI agents have only working memory—they forget everything between sessions. 2. ZeroMemory adds episodic and semantic memory—it remembers facts, events, and preferences. 3. One config connects it to Claude, Cursor, or any MCP-compatible tool. 4. It searches by meaning, not keywords—100% Recall@1 on benchmarks. 5. Your data lives in your ZeroDB project—you own it, you control it. ### Path 1 vs Path 2: Choosing Your Journey
Feature Path 1: ZeroDB Local Path 2: Agent Memory Cloud
Best for Full database (vectors, tables, files) Pure AI memory across tools
Setup Docker on your machine Cloud API, no install
Data On your laptop In your ZeroDB cloud project
Use case Building an app or product Making your daily AI tools smarter
Prefer local Docker setup? See our [Path 1 workshop post](/blog/zerodb-for-non-devs-workshop) which covers ZeroDB running on your own machine. ### Resources to Keep You Going - [Agent Memory API](https://ainative.studio/agent-memory-api) - [Getting started with agents](https://ainative.studio/getting-started/agents) - [ZeroDB Dashboard](https://ainative.studio/dashboard) - **MCP Server Command:** `npx ainative-zerodb-memory-mcp` Every memory you store today makes your AI smarter for your work tomorrow. Don't stop here—try connecting a second tool like Cursor or Windsurf to the same project. They will share the same memory, giving you a unified intelligence across your entire stack. We invite you to join us at the Citizen Space hack nights to go deeper: [https://ainative.studio/citizen-space](https://ainative.studio/citizen-space). Remember: **You are not programming. You are teaching your AI to remember.** _Developed with Cody, our internal agentic architect._ _Built by the AINative Dev Team._ --- #ZeroDB #Workshop #AIAgents #ModelContextProtocol #MCPServers #GettingStarted

Check your site's AX Score

Free scan, 6 categories, under 60 seconds. See how your site ranks on the agentic web.

Run a free audit →