<?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: sellmind</title>
    <description>The latest articles on DEV Community by sellmind (@tjhub1983).</description>
    <link>https://dev.to/tjhub1983</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%2F3921299%2F4b5520bc-f50f-47d3-9b60-af0a682f81d8.png</url>
      <title>DEV Community: sellmind</title>
      <link>https://dev.to/tjhub1983</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tjhub1983"/>
    <language>en</language>
    <item>
      <title>I Built a Cross-Session Memory System for AI Agents No More Re-Training Every Session</title>
      <dc:creator>sellmind</dc:creator>
      <pubDate>Sat, 09 May 2026 08:08:09 +0000</pubDate>
      <link>https://dev.to/tjhub1983/i-built-a-cross-session-memory-system-for-ai-agents-no-more-re-training-every-session-16eo</link>
      <guid>https://dev.to/tjhub1983/i-built-a-cross-session-memory-system-for-ai-agents-no-more-re-training-every-session-16eo</guid>
      <description>&lt;p&gt;If youve ever used Claude Code (or any AI coding assistant), you know this feeling:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;New session = AI has zero memory of you&lt;/li&gt;
&lt;li&gt;Yesterdays decisions? Forgotten. Last weeks context? Gone.&lt;/li&gt;
&lt;li&gt;Hours spent re-aligning the AI before it can actually help&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This isnt an AI problem. Its a memory problem.&lt;/p&gt;




&lt;h2&gt;
  
  
  What is sellmind?
&lt;/h2&gt;

&lt;p&gt;sellmind (CellMind Temporal Memory Loop) is a memory system built specifically for AI agents.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Core Features:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;72-hour Temporal Window&lt;/strong&gt;: Recent conversations automatically strengthened&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cell Pool Memory&lt;/strong&gt;: Like brain neurons - every concept is a cell, frequently activated cells grow stronger&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Emotional Coherence&lt;/strong&gt;: Remembers the emotional tone of conversations, resumes with consistent emotional state&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Cross-Session Persistence&lt;/strong&gt;: Restart Claude Code, memory survives&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  How It Works
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Cell Pool (CellMemory)
&lt;/h3&gt;

&lt;p&gt;Each concept = one Cell with strength and energy. The more a topic is discussed, the stronger its cell, the slower it decays.&lt;/p&gt;

&lt;h3&gt;
  
  
  Temporal Memory Layer
&lt;/h3&gt;

&lt;p&gt;All conversations logged, scored by importance. Memory within 72 hours gets the highest weight. But truly important content is automatically protected as permanent memory.&lt;/p&gt;

&lt;h3&gt;
  
  
  Emotion Lock
&lt;/h3&gt;

&lt;p&gt;Conversations record emotional state. When you return, the AI resumes with the emotional context from last time.&lt;/p&gt;




&lt;h2&gt;
  
  
  Quick Start (5 minutes)
&lt;/h2&gt;

&lt;p&gt;API: &lt;a href="http://localhost:18766" rel="noopener noreferrer"&gt;http://localhost:18766&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Why Not Just Use a Vector Database?
&lt;/h2&gt;

&lt;p&gt;Vector databases solve the retrieval problem, not the memory problem.&lt;/p&gt;

&lt;p&gt;sellmind solves:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Which memories should strengthen vs. fade&lt;/li&gt;
&lt;li&gt;How memories connect to each other (Hebbian learning)&lt;/li&gt;
&lt;li&gt;How emotional state persists across sessions&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Its a brain-like memory mechanism, not a cold database.&lt;/p&gt;




&lt;h2&gt;
  
  
  Open Source
&lt;/h2&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/tjhub1983/sellmind" rel="noopener noreferrer"&gt;https://github.com/tjhub1983/sellmind&lt;/a&gt;&lt;br&gt;
MIT License. Star and PR welcome.&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>python</category>
      <category>ai</category>
      <category>agents</category>
    </item>
    <item>
      <title>I Built a Cross-Session Memory System for AI Agents — No More Re-Training Every Session</title>
      <dc:creator>sellmind</dc:creator>
      <pubDate>Sat, 09 May 2026 08:07:24 +0000</pubDate>
      <link>https://dev.to/tjhub1983/i-built-a-cross-session-memory-system-for-ai-agents-no-more-re-training-every-session-jb1</link>
      <guid>https://dev.to/tjhub1983/i-built-a-cross-session-memory-system-for-ai-agents-no-more-re-training-every-session-jb1</guid>
      <description>&lt;p&gt;If you've ever used Claude Code (or any AI coding assistant), you know this feeling:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;New session = AI has zero memory of you&lt;/li&gt;
&lt;li&gt;Yesterday's decisions? Forgotten. Last week's context? Gone.&lt;/li&gt;
&lt;li&gt;Hours spent "re-aligning" the AI before it can actually help&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This isn't an AI problem. It's a memory problem.&lt;/p&gt;




&lt;h2&gt;
  
  
  What is sellmind?
&lt;/h2&gt;

&lt;p&gt;sellmind (CellMind Temporal Memory Loop) is a memory system built specifically for AI agents.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Core Features:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;🌊 &lt;strong&gt;72-hour Temporal Window&lt;/strong&gt;: Recent conversations automatically strengthened&lt;/li&gt;
&lt;li&gt;🧠 &lt;strong&gt;Cell Pool Memory&lt;/strong&gt;: Like brain neurons — every concept is a cell, frequently activated cells grow stronger&lt;/li&gt;
&lt;li&gt;💚 &lt;strong&gt;Emotional Coherence&lt;/strong&gt;: Remembers the emotional tone of conversations, resumes with consistent emotional state&lt;/li&gt;
&lt;li&gt;🔁 &lt;strong&gt;Cross-Session Persistence&lt;/strong&gt;: Restart Claude Code, memory survives&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  How It Works
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Cell Pool (CellMemory)
&lt;/h3&gt;

&lt;p&gt;Each concept = one Cell with strength and energy. The more a topic is discussed, the stronger its cell, the slower it decays.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;cell&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;activate&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;boost&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="mf"&gt;0.2&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;  &lt;span class="c1"&gt;# Discussion strengthens the cell
&lt;/span&gt;&lt;span class="n"&gt;cell&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;decay_all&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;days&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;     &lt;span class="c1"&gt;# Daily decay
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Temporal Memory Layer
&lt;/h3&gt;

&lt;p&gt;All conversations logged, scored by importance. Memory within 72 hours gets the highest weight. But truly important content is automatically protected as permanent memory.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;temporal&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;add_record&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 minimal design&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;role&lt;/span&gt;&lt;span class="o"&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="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;importance&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="mf"&gt;0.85&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="n"&gt;temporal&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;apply_decay&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;  &lt;span class="c1"&gt;# Old memories fade, important ones stay
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Emotion Lock
&lt;/h3&gt;

&lt;p&gt;Conversations record emotional state. When you return, the AI resumes with the emotional context from last time.&lt;/p&gt;




&lt;h2&gt;
  
  
  Quick Start (5 minutes)
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Install&lt;/span&gt;
pip &lt;span class="nb"&gt;install &lt;/span&gt;sellmind

&lt;span class="c"&gt;# Start service&lt;/span&gt;
python &lt;span class="nt"&gt;-m&lt;/span&gt; sellmind.api

&lt;span class="c"&gt;# Write memory&lt;/span&gt;
from sellmind import write
write&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;"User is TaoTao, prefers minimalist product design"&lt;/span&gt;&lt;span class="o"&gt;)&lt;/span&gt;

&lt;span class="c"&gt;# Read memory&lt;/span&gt;
from sellmind import &lt;span class="nb"&gt;read
&lt;/span&gt;context &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;read&lt;/span&gt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="nv"&gt;hours&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;72&lt;span class="o"&gt;)&lt;/span&gt;  &lt;span class="c"&gt;# Last 72 hours&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;API: &lt;code&gt;http://localhost:18766&lt;/code&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Why Not Just Use a Vector Database?
&lt;/h2&gt;

&lt;p&gt;Vector databases solve the &lt;em&gt;retrieval&lt;/em&gt; problem, not the &lt;em&gt;memory&lt;/em&gt; problem.&lt;/p&gt;

&lt;p&gt;sellmind solves:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Which memories should strengthen vs. fade&lt;/li&gt;
&lt;li&gt;How memories connect to each other (Hebbian learning)&lt;/li&gt;
&lt;li&gt;How emotional state persists across sessions&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;It's a brain-like memory mechanism, not a cold database.&lt;/p&gt;




&lt;h2&gt;
  
  
  Open Source
&lt;/h2&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/tjhub1983/sellmind" rel="noopener noreferrer"&gt;https://github.com/tjhub1983/sellmind&lt;/a&gt;&lt;br&gt;
MIT License. Star and PR welcome.&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>python</category>
      <category>ai</category>
      <category>agents</category>
    </item>
  </channel>
</rss>
