<?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: Mario Gutierrez</title>
    <description>The latest articles on DEV Community by Mario Gutierrez (@terrizoaguimor).</description>
    <link>https://dev.to/terrizoaguimor</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%2F3880854%2F56d8a0a4-d491-4869-8f35-908d1b3d2b95.jpeg</url>
      <title>DEV Community: Mario Gutierrez</title>
      <link>https://dev.to/terrizoaguimor</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/terrizoaguimor"/>
    <language>en</language>
    <item>
      <title>I Have ADHD and I Keep Losing Context — So I Taught My AI to Remember for Me</title>
      <dc:creator>Mario Gutierrez</dc:creator>
      <pubDate>Fri, 17 Apr 2026 13:38:29 +0000</pubDate>
      <link>https://dev.to/terrizoaguimor/i-have-adhd-and-i-keep-losing-context-so-i-taught-my-ai-to-remember-for-me-afl</link>
      <guid>https://dev.to/terrizoaguimor/i-have-adhd-and-i-keep-losing-context-so-i-taught-my-ai-to-remember-for-me-afl</guid>
      <description>&lt;p&gt;I'm going to be honest about something that most people in tech don't talk about openly.&lt;/p&gt;

&lt;p&gt;I have ADHD. I'm 40. I'm a self-taught developer with no CS degree. And I lose context constantly.&lt;/p&gt;

&lt;p&gt;Not in the "oh I forgot where I put my keys" way. In the "I just spent 3 hours deep in a codebase, got interrupted by a Slack message, and now I genuinely cannot remember what I was doing or why" way.&lt;/p&gt;

&lt;p&gt;If you have ADHD, you know exactly what I'm talking about. If you don't — imagine your browser crashing and losing 47 tabs. That panic? That's every Tuesday for me.&lt;/p&gt;

&lt;h2&gt;
  
  
  The AI Paradox for ADHD Brains
&lt;/h2&gt;

&lt;p&gt;Here's the thing nobody warned me about: &lt;strong&gt;AI coding tools made my ADHD worse.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Not better. Worse.&lt;/p&gt;

&lt;p&gt;Why? Because they're stateless. Every session is a blank slate. And for someone who already struggles with working memory, having to rebuild context from scratch every time I open Claude Code or ChatGPT is genuinely exhausting.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Me at 9am: "I'm working on a Next.js app with Supabase auth, 
           JWT refresh tokens, the user table has these columns..."

Me at 2pm: "I'm working on a Next.js app with Supabase auth,
           JWT refresh tokens, the user table has these columns..."

Me at 9pm: "I'm working on a Next.js app with Supabase auth..."
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I type the same context paragraph 5-8 times a day. Every. Single. Day.&lt;/p&gt;

&lt;p&gt;For a neurotypical developer, this is annoying. For me, each repetition drains the limited executive function I have. By the third time, I'm frustrated. By the fifth, I'm done for the day.&lt;/p&gt;

&lt;p&gt;The tool that's supposed to help me think is making me spend my mental energy on &lt;em&gt;remembering what to tell it&lt;/em&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Breaking Point
&lt;/h2&gt;

&lt;p&gt;It happened on a Thursday at midnight. I was debugging a race condition. I'd been at it for two hours. Claude gave me a suggestion I'd already tried — because it didn't know I'd already tried it. Because it doesn't remember anything.&lt;/p&gt;

&lt;p&gt;I typed (and I'm not proud of this):&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;"I ALREADY TRIED THAT. WE DISCUSSED THIS 20 MINUTES AGO IN THE PREVIOUS SESSION."&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Then I realized: I was yelling at a machine for not having memory. And the machine was right to not remember — it was designed that way. Every AI tool is designed that way.&lt;/p&gt;

&lt;p&gt;That's when something clicked. Not the bug (that took another hour). Something else:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The problem isn't AI intelligence. It's AI amnesia.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Actually Needed
&lt;/h2&gt;

&lt;p&gt;I sat down and wrote a list of what would actually help my ADHD brain:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Don't make me repeat context.&lt;/strong&gt; Ever. If I told you once, you should know it forever.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Remember what worked AND what didn't.&lt;/strong&gt; So you don't suggest the thing I already tried and rejected.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Know when I'm frustrated.&lt;/strong&gt; If I've been debugging the same thing for 2 hours at midnight, maybe don't give me a 500-word explanation. Just give me the fix.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Carry context across projects.&lt;/strong&gt; My coding style doesn't change when I switch repos. My preferences don't reset.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Forget things naturally.&lt;/strong&gt; Not everything is worth remembering forever. That random CSS hack from 6 months ago? Let it fade.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I looked for tools that did this. I found vector databases pretending to be memory. I found RAG pipelines that retrieve documents but don't understand context. I found "memory" features that are just conversation logs with a search bar.&lt;/p&gt;

&lt;p&gt;Nothing actually modeled how memory works. How &lt;em&gt;my&lt;/em&gt; brain works (when it works).&lt;/p&gt;

&lt;h2&gt;
  
  
  So I Started Building
&lt;/h2&gt;

&lt;p&gt;I'm not going to pitch you anything. But I will tell you what I learned, because maybe it's useful to someone else.&lt;/p&gt;

&lt;p&gt;I started reading neuroscience papers. Real ones. Not Medium articles — actual research on how human memory works:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;The Ebbinghaus forgetting curve&lt;/strong&gt; — memories decay exponentially unless reinforced. Your brain doesn't delete things; they just fade. This is the opposite of how databases work (store forever, delete explicitly).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;The PAD emotional model&lt;/strong&gt; — Pleasure, Arousal, Dominance. Psychologists use three dimensions to map any emotional state. Turns out, emotions are not decorations on memory — they're part of the retrieval mechanism. You remember emotional events better. Your brain literally prioritizes them.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Circadian rhythms affect cognition&lt;/strong&gt; — you're not the same developer at 9am and 11pm. Your ability to focus, recall, and make decisions fluctuates. Any system that treats you the same at all times is ignoring biology.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I started modeling these concepts in code. Not as a product — as a personal tool. Something that would sit between me and my AI tools and just... remember things for me.&lt;/p&gt;

&lt;p&gt;The first version was ugly. 200 lines of JavaScript and a JSON file. But it worked. I told it my preferences once, and the next day, they were still there. I told it about a debugging approach that failed, and it remembered that too.&lt;/p&gt;

&lt;p&gt;For the first time in years, I felt like my tools were adapting to me instead of the other way around.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Learned About Memory (and ADHD)
&lt;/h2&gt;

&lt;p&gt;Building this taught me things about my own brain:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. Context is not content.&lt;/strong&gt; There's a difference between "what was said" and "what matters." Most AI memory solutions store conversations. But what I need is &lt;em&gt;context&lt;/em&gt; — the decisions, the preferences, the patterns. Not the 400 lines of chat where we discussed them.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2. Forgetting is a feature, not a bug.&lt;/strong&gt; My ADHD brain forgets things constantly, and yes, it's frustrating. But it also means I don't carry stale assumptions. I approach problems fresh. The best memory system isn't one that remembers everything — it's one that remembers the right things and lets the rest fade.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3. Emotions are metadata.&lt;/strong&gt; When I'm frustrated with a solution, that frustration is information. It means "this approach has a problem, even if the code technically works." Any memory system that strips emotional context is throwing away signal.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4. My ADHD is a design constraint, not a disability.&lt;/strong&gt; When I design for my own limitations — short working memory, need for external structure, sensitivity to context switches — I end up building things that work better for everyone. Turns out, neurotypical developers also hate re-explaining context to their AI tools. They're just more patient about it.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Uncomfortable Truth
&lt;/h2&gt;

&lt;p&gt;Here's what I think about late at night:&lt;/p&gt;

&lt;p&gt;Every major AI company is racing to build bigger models, longer context windows, better reasoning. And that's great. But none of them are building memory.&lt;/p&gt;

&lt;p&gt;Not real memory. Not the kind that persists, decays, carries emotion, and adapts to you over time.&lt;/p&gt;

&lt;p&gt;They're building incredibly smart assistants with permanent amnesia. And we've all just... accepted that?&lt;/p&gt;

&lt;p&gt;I didn't accept it. I couldn't. My brain wouldn't let me.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where I Am Now
&lt;/h2&gt;

&lt;p&gt;I'm a solo founder. Venezuelan, living in Medellín, Colombia. Zero employees. I run the company with AI agents (which is a whole other post).&lt;/p&gt;

&lt;p&gt;I've been working on this problem for months. Some days I feel like I'm building something important. Other days I feel like I'm a guy with ADHD who got hyperfocused on a niche problem and can't stop.&lt;/p&gt;

&lt;p&gt;Both are probably true.&lt;/p&gt;

&lt;p&gt;If you're a developer with ADHD — or honestly, any developer who's tired of being the memory system for your AI tools — I'd love to hear how you deal with it. What workarounds have you found? What do you wish your tools remembered?&lt;/p&gt;

&lt;p&gt;And if you're building AI tools: please, for the love of everything, add persistent memory. Your ADHD users will thank you. Your neurotypical users will thank you too, they just won't know why.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;This is my first post here. I'm Mario. I'll probably write about building things alone, neurodivergent entrepreneurship, and why AI tools should be designed for how brains actually work — not how we wish they worked.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>adhd</category>
      <category>productivity</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
