<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Mani87-nq</title>
    <description>The latest articles on DEV Community by Mani87-nq (@mani87nq).</description>
    <link>https://dev.to/mani87nq</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3812924%2F445656c6-29d3-45ee-9534-df8dcd7c53f5.png</url>
      <title>DEV Community: Mani87-nq</title>
      <link>https://dev.to/mani87nq</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mani87nq"/>
    <language>en</language>
    <item>
      <title>Add Persistent Memory to Your AI Agent in 5 Minutes</title>
      <dc:creator>Mani87-nq</dc:creator>
      <pubDate>Sat, 21 Mar 2026 15:10:24 +0000</pubDate>
      <link>https://dev.to/mani87nq/add-persistent-memory-to-your-ai-agent-in-5-minutes-5g24</link>
      <guid>https://dev.to/mani87nq/add-persistent-memory-to-your-ai-agent-in-5-minutes-5g24</guid>
      <description>&lt;p&gt;Your AI forgets everything. Every conversation starts from scratch. Every preference explained again. Every context rebuilt.&lt;/p&gt;

&lt;p&gt;What if it didn't have to?&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;I've been building AI agents for the past year, and the biggest limitation isn't the model—it's the amnesia. Context windows are just short-term memory. When the conversation ends, everything disappears.&lt;/p&gt;

&lt;p&gt;Sure, you can stuff conversation history into the prompt. But that burns tokens, hits context limits, and doesn't scale.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Solution: Semantic Memory
&lt;/h2&gt;

&lt;p&gt;I built &lt;a href="https://remembra.dev" rel="noopener noreferrer"&gt;Remembra&lt;/a&gt; to solve this. It's an open-source memory layer that gives your AI persistent, semantic memory.&lt;/p&gt;

&lt;p&gt;Here's what "semantic" means: instead of storing raw text, it understands &lt;em&gt;meaning&lt;/em&gt;. Ask "what does the user prefer?" and it retrieves relevant memories even if you never used the word "prefer."&lt;/p&gt;

&lt;h2&gt;
  
  
  Quick Start (Actually 5 Minutes)
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Run Remembra (One Command)
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;docker run &lt;span class="nt"&gt;-d&lt;/span&gt; &lt;span class="nt"&gt;-p&lt;/span&gt; 8080:8080 remembra/remembra:latest
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's it. No database setup. No configuration. Just works.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Install the Python SDK
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install &lt;/span&gt;remembra
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  3. Store and Recall Memories
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;from&lt;/span&gt; &lt;span class="n"&gt;remembra&lt;/span&gt; &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;RemembraClient&lt;/span&gt;

&lt;span class="n"&gt;client&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nc"&gt;RemembraClient&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;http://localhost:8080&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="c1"&gt;# Store a memory
&lt;/span&gt;&lt;span class="n"&gt;client&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;store&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;User prefers TypeScript over JavaScript&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="n"&gt;client&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;store&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;User works at Acme Corp on the payments team&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="n"&gt;client&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;store&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;User&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;s deadline is March 15th&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="c1"&gt;# Recall relevant memories
&lt;/span&gt;&lt;span class="n"&gt;memories&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;client&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;recall&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;What programming language should I use?&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="c1"&gt;# Returns: "User prefers TypeScript over JavaScript"
&lt;/span&gt;
&lt;span class="n"&gt;memories&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;client&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;recall&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;When is the project due?&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="c1"&gt;# Returns: "User's deadline is March 15th"
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The magic: you don't need exact keyword matches. Semantic search finds what's &lt;em&gt;relevant&lt;/em&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Makes This Different?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Entity Extraction&lt;/strong&gt;: Remembra automatically identifies people, organizations, dates, and concepts. Query "memories about Acme Corp" and get everything related.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Conflict Resolution&lt;/strong&gt;: If you store contradictory memories, Remembra handles it intelligently—newer facts can override older ones.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Privacy First&lt;/strong&gt;: Self-hosted means your data never leaves your infrastructure. Built-in PII detection flags sensitive information.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;100% on LoCoMo&lt;/strong&gt;: The standard benchmark for memory retrieval. We score 100%. The VC-backed alternatives? 66%.&lt;/p&gt;

&lt;h2&gt;
  
  
  Use Cases
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Coding Assistants&lt;/strong&gt;: AI that remembers your codebase patterns, past decisions, what broke last time&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Customer Support&lt;/strong&gt;: Bots that actually know your history&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Personal AI&lt;/strong&gt;: Assistants that learn your preferences over time&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multi-Session Agents&lt;/strong&gt;: Any agent that needs context across conversations&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  MCP Integration (Claude Desktop/Cursor)
&lt;/h2&gt;

&lt;p&gt;If you use Claude Desktop or Cursor, we have an MCP server:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"remembra"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"uvx"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"args"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"remembra-mcp"&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now Claude remembers everything across sessions.&lt;/p&gt;

&lt;h2&gt;
  
  
  It's Free and Open Source
&lt;/h2&gt;

&lt;p&gt;MIT licensed. Self-host forever at no cost. We also have a managed cloud option at &lt;a href="https://remembra.dev" rel="noopener noreferrer"&gt;remembra.dev&lt;/a&gt; if you don't want to run infrastructure.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;GitHub&lt;/strong&gt;: &lt;a href="https://github.com/remembra-ai/remembra" rel="noopener noreferrer"&gt;https://github.com/remembra-ai/remembra&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Docs&lt;/strong&gt;: &lt;a href="https://docs.remembra.dev" rel="noopener noreferrer"&gt;https://docs.remembra.dev&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Discord&lt;/strong&gt;: &lt;a href="https://discord.gg/Bzv3JshRa3" rel="noopener noreferrer"&gt;https://discord.gg/Bzv3JshRa3&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Launching officially March 11th on Product Hunt, but the code is live now. Try it, break it, tell me what sucks.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;What are you building that needs memory? Drop a comment—I'd love to hear your use case.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Add Persistent Memory to Your AI Agent in 5 Minutes</title>
      <dc:creator>Mani87-nq</dc:creator>
      <pubDate>Sun, 08 Mar 2026 13:40:37 +0000</pubDate>
      <link>https://dev.to/mani87nq/add-persistent-memory-to-your-ai-agent-in-5-minutes-1h42</link>
      <guid>https://dev.to/mani87nq/add-persistent-memory-to-your-ai-agent-in-5-minutes-1h42</guid>
      <description>&lt;p&gt;Your AI forgets everything. Every conversation starts from scratch. Every preference explained again. Every context rebuilt.&lt;/p&gt;

&lt;p&gt;What if it didn't have to?&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;I've been building AI agents for the past year, and the biggest limitation isn't the model—it's the amnesia. Context windows are just short-term memory. When the conversation ends, everything disappears.&lt;/p&gt;

&lt;p&gt;Sure, you can stuff conversation history into the prompt. But that burns tokens, hits context limits, and doesn't scale.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Solution: Semantic Memory
&lt;/h2&gt;

&lt;p&gt;I built &lt;a href="https://remembra.dev" rel="noopener noreferrer"&gt;Remembra&lt;/a&gt; to solve this. It's an open-source memory layer that gives your AI persistent, semantic memory.&lt;/p&gt;

&lt;p&gt;Here's what "semantic" means: instead of storing raw text, it understands &lt;em&gt;meaning&lt;/em&gt;. Ask "what does the user prefer?" and it retrieves relevant memories even if you never used the word "prefer."&lt;/p&gt;

&lt;h2&gt;
  
  
  Quick Start (Actually 5 Minutes)
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Run Remembra (One Command)
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;docker run &lt;span class="nt"&gt;-d&lt;/span&gt; &lt;span class="nt"&gt;-p&lt;/span&gt; 8080:8080 remembra/remembra:latest
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's it. No database setup. No configuration. Just works.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Install the Python SDK
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install &lt;/span&gt;remembra
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  3. Store and Recall Memories
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;from&lt;/span&gt; &lt;span class="n"&gt;remembra&lt;/span&gt; &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;RemembraClient&lt;/span&gt;

&lt;span class="n"&gt;client&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nc"&gt;RemembraClient&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;http://localhost:8080&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="c1"&gt;# Store a memory
&lt;/span&gt;&lt;span class="n"&gt;client&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;store&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;User prefers TypeScript over JavaScript&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="n"&gt;client&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;store&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;User works at Acme Corp on the payments team&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="n"&gt;client&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;store&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;User&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;s deadline is March 15th&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

&lt;span class="c1"&gt;# Recall relevant memories
&lt;/span&gt;&lt;span class="n"&gt;memories&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;client&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;recall&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;What programming language should I use?&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="c1"&gt;# Returns: "User prefers TypeScript over JavaScript"
&lt;/span&gt;
&lt;span class="n"&gt;memories&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;client&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;recall&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;When is the project due?&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="c1"&gt;# Returns: "User's deadline is March 15th"
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The magic: you don't need exact keyword matches. Semantic search finds what's &lt;em&gt;relevant&lt;/em&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Makes This Different?
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Entity Extraction&lt;/strong&gt;: Remembra automatically identifies people, organizations, dates, and concepts. Query "memories about Acme Corp" and get everything related.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Conflict Resolution&lt;/strong&gt;: If you store contradictory memories, Remembra handles it intelligently—newer facts can override older ones.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Privacy First&lt;/strong&gt;: Self-hosted means your data never leaves your infrastructure. Built-in PII detection flags sensitive information.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;100% on LoCoMo&lt;/strong&gt;: The standard benchmark for memory retrieval. We score 100%. The VC-backed alternatives? 66%.&lt;/p&gt;

&lt;h2&gt;
  
  
  Use Cases
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Coding Assistants&lt;/strong&gt;: AI that remembers your codebase patterns, past decisions, what broke last time&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Customer Support&lt;/strong&gt;: Bots that actually know your history&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Personal AI&lt;/strong&gt;: Assistants that learn your preferences over time&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multi-Session Agents&lt;/strong&gt;: Any agent that needs context across conversations&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  MCP Integration (Claude Desktop/Cursor)
&lt;/h2&gt;

&lt;p&gt;If you use Claude Desktop or Cursor, we have an MCP server:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight json"&gt;&lt;code&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"mcpServers"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="nl"&gt;"remembra"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;{&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"command"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"uvx"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
      &lt;/span&gt;&lt;span class="nl"&gt;"args"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"remembra-mcp"&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;span class="p"&gt;}&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now Claude remembers everything across sessions.&lt;/p&gt;

&lt;h2&gt;
  
  
  It's Free and Open Source
&lt;/h2&gt;

&lt;p&gt;MIT licensed. Self-host forever at no cost. We also have a managed cloud option at &lt;a href="https://remembra.dev" rel="noopener noreferrer"&gt;remembra.dev&lt;/a&gt; if you don't want to run infrastructure.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;GitHub&lt;/strong&gt;: &lt;a href="https://github.com/remembra-ai/remembra" rel="noopener noreferrer"&gt;https://github.com/remembra-ai/remembra&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Docs&lt;/strong&gt;: &lt;a href="https://docs.remembra.dev" rel="noopener noreferrer"&gt;https://docs.remembra.dev&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Discord&lt;/strong&gt;: &lt;a href="https://discord.gg/Bzv3JshRa3" rel="noopener noreferrer"&gt;https://discord.gg/Bzv3JshRa3&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Launching officially March 11th on Product Hunt, but the code is live now. Try it, break it, tell me what sucks.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;What are you building that needs memory? Drop a comment—I'd love to hear your use case.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
