<?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: Abhir Anand</title>
    <description>The latest articles on DEV Community by Abhir Anand (@abhir_anand_0b4561f9068a9).</description>
    <link>https://dev.to/abhir_anand_0b4561f9068a9</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%2F3906579%2Ff00ce27d-c723-40e0-856a-f06673c14682.jpg</url>
      <title>DEV Community: Abhir Anand</title>
      <link>https://dev.to/abhir_anand_0b4561f9068a9</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/abhir_anand_0b4561f9068a9"/>
    <language>en</language>
    <item>
      <title>Stop re-explaining your project to AI</title>
      <dc:creator>Abhir Anand</dc:creator>
      <pubDate>Thu, 30 Apr 2026 18:17:20 +0000</pubDate>
      <link>https://dev.to/abhir_anand_0b4561f9068a9/stop-re-explaining-your-project-to-ai-3765</link>
      <guid>https://dev.to/abhir_anand_0b4561f9068a9/stop-re-explaining-your-project-to-ai-3765</guid>
      <description>&lt;h1&gt;
  
  
  I was tired of re-explaining my project to AI — so I built this
&lt;/h1&gt;

&lt;p&gt;Switching between AI tools is frustrating.&lt;/p&gt;

&lt;p&gt;You explain your project to ChatGPT → then switch to Claude → and suddenly… it knows nothing.&lt;/p&gt;

&lt;p&gt;You start from scratch. Again.&lt;/p&gt;




&lt;h2&gt;
  
  
  😩 The problem
&lt;/h2&gt;

&lt;p&gt;AI tools don’t share memory.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Cursor forgets after context limit&lt;/li&gt;
&lt;li&gt;Claude has no idea what you built&lt;/li&gt;
&lt;li&gt;ChatGPT starts from zero&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You keep repeating:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“I already built this… why am I explaining again?”&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  🚀 What I built
&lt;/h2&gt;

&lt;p&gt;I built &lt;strong&gt;AIState&lt;/strong&gt; — a Git-like CLI for AI workflows.&lt;/p&gt;

&lt;p&gt;It tracks your:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;tasks&lt;/li&gt;
&lt;li&gt;decisions&lt;/li&gt;
&lt;li&gt;current progress&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And generates a &lt;strong&gt;handoff prompt&lt;/strong&gt; so any AI can continue your work instantly.&lt;/p&gt;




&lt;h2&gt;
  
  
  ⚡ How it works
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;aistate init
aistate add &lt;span class="s2"&gt;"build Stripe webhook"&lt;/span&gt;
aistate &lt;span class="k"&gt;done &lt;/span&gt;T1
aistate log &lt;span class="s2"&gt;"using idempotency keys"&lt;/span&gt;
aistate handoff
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;👉 Paste the output into any AI → continue without re-explaining.&lt;/p&gt;




&lt;h2&gt;
  
  
  🔥 Example output
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;PROJECT: ecommerce-backend

CURRENT FOCUS: Stripe webhook

COMPLETED:
- Auth system
- Product API

TODO:
- Webhook endpoint
- Email notifications

DO NOT REDO:
- Auth is complete
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  🧠 Why this matters
&lt;/h2&gt;

&lt;p&gt;AI is powerful — but context loss kills productivity.&lt;/p&gt;

&lt;p&gt;AIState gives your project &lt;strong&gt;persistent memory&lt;/strong&gt; so you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;switch between AI tools freely&lt;/li&gt;
&lt;li&gt;avoid repeating yourself&lt;/li&gt;
&lt;li&gt;keep your workflow consistent&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🌍 Works everywhere
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Any AI tool (ChatGPT, Claude, Cursor, etc.)&lt;/li&gt;
&lt;li&gt;Any language&lt;/li&gt;
&lt;li&gt;Any IDE&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Everything is stored locally. No cloud. No lock-in.&lt;/p&gt;




&lt;h2&gt;
  
  
  💡 Try it
&lt;/h2&gt;

&lt;p&gt;👉 &lt;a href="https://github.com/Abhir22/aistate" rel="noopener noreferrer"&gt;https://github.com/Abhir22/aistate&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  👀 Looking for feedback
&lt;/h2&gt;

&lt;p&gt;This is still early — I’d love to know:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What feels missing?&lt;/li&gt;
&lt;li&gt;What would make this actually useful in your workflow?&lt;/li&gt;
&lt;/ul&gt;




&lt;p&gt;If you’ve ever felt like AI tools forget everything… this might help.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>programming</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
