<?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>Forem: Alen Hovhannisians</title>
    <description>The latest articles on Forem by Alen Hovhannisians (@hovhannisians).</description>
    <link>https://forem.com/hovhannisians</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%2F3583605%2F42c6532f-f826-4550-bbc7-a997b39b44e2.jpeg</url>
      <title>Forem: Alen Hovhannisians</title>
      <link>https://forem.com/hovhannisians</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/hovhannisians"/>
    <language>en</language>
    <item>
      <title>You keep repeating yourself to AI every day. We tried to fix that.</title>
      <dc:creator>Alen Hovhannisians</dc:creator>
      <pubDate>Tue, 31 Mar 2026 23:33:29 +0000</pubDate>
      <link>https://forem.com/hovhannisians/you-keep-repeating-yourself-to-ai-every-day-we-tried-to-fix-that-39me</link>
      <guid>https://forem.com/hovhannisians/you-keep-repeating-yourself-to-ai-every-day-we-tried-to-fix-that-39me</guid>
      <description>&lt;p&gt;There’s a weird feeling when working with AI.&lt;/p&gt;

&lt;p&gt;You’ve solved this task before.&lt;br&gt;
You’ve already explained how you want things done.&lt;br&gt;
You’ve already gotten a good result.&lt;/p&gt;

&lt;p&gt;And yet today… you start from zero.&lt;/p&gt;

&lt;p&gt;Again you write:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;don’t over-engineer&lt;/li&gt;
&lt;li&gt;don’t change the design&lt;/li&gt;
&lt;li&gt;keep it simple&lt;/li&gt;
&lt;li&gt;follow these constraints&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;After a few messages, you realize:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;I’m basically repeating yesterday’s conversation&lt;/em&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  The real problem
&lt;/h2&gt;

&lt;p&gt;It’s not the model.&lt;br&gt;
It’s not your prompts.&lt;/p&gt;

&lt;p&gt;The problem is:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;AI does not remember what actually worked&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Every session is a reset.&lt;/p&gt;
&lt;h2&gt;
  
  
  Why memory is not enough
&lt;/h2&gt;

&lt;p&gt;You might say, but there’s memory.&lt;/p&gt;

&lt;p&gt;Yes, but memory stores facts:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;user prefers concise answers&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Not behavior:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;in migrations, do not touch UI and avoid refactoring&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;That difference matters.&lt;/p&gt;
&lt;h2&gt;
  
  
  Where the real value is lost
&lt;/h2&gt;

&lt;p&gt;When you finally get a great result, something important happened.&lt;/p&gt;

&lt;p&gt;You discovered a working pattern.&lt;/p&gt;

&lt;p&gt;But that pattern disappears with the conversation.&lt;/p&gt;
&lt;h2&gt;
  
  
  We tried to store the experience, not the chat
&lt;/h2&gt;

&lt;p&gt;That’s where AEP (Agent Experience Protocol) comes in.&lt;/p&gt;

&lt;p&gt;If something worked, save why it worked&lt;/p&gt;

&lt;p&gt;Not prompts.&lt;br&gt;
Not chat logs.&lt;br&gt;
Just the essence.&lt;/p&gt;
&lt;h2&gt;
  
  
  What AEP actually stores
&lt;/h2&gt;

&lt;p&gt;After a successful task, AEP captures:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;intent&lt;/li&gt;
&lt;li&gt;constraints&lt;/li&gt;
&lt;li&gt;preferences&lt;/li&gt;
&lt;li&gt;workflow&lt;/li&gt;
&lt;li&gt;failure traps&lt;/li&gt;
&lt;li&gt;success checks&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Instead of storing conversations, it stores success structure.&lt;/p&gt;

&lt;p&gt;A familiar example&lt;/p&gt;

&lt;p&gt;Task:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;convert an HTML template to Next.js&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;What usually happens:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;AI starts “improving” things&lt;/li&gt;
&lt;li&gt;splits everything into too many components&lt;/li&gt;
&lt;li&gt;changes structure&lt;/li&gt;
&lt;li&gt;breaks styling&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;You spend 10–20 messages fixing it.&lt;/p&gt;

&lt;p&gt;When it finally works, that’s the valuable moment.&lt;/p&gt;

&lt;p&gt;AEP stores it like this:&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;"intent"&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;"Convert HTML to Next.js while preserving layout"&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"constraints"&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;"Do not redesign UI"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"Keep CSS intact"&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"preferences"&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;"Prefer simplicity over abstraction"&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;&lt;span class="w"&gt;
  &lt;/span&gt;&lt;span class="nl"&gt;"workflow"&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="s2"&gt;"Analyze layout"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="s2"&gt;"Convert HTML to JSX"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="s2"&gt;"Preserve styles"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="s2"&gt;"Split only when needed"&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;"failure_traps"&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="s2"&gt;"Over-engineering"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="s2"&gt;"Unrequested redesign"&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;"success_checks"&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="s2"&gt;"Visual parity"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt;
    &lt;/span&gt;&lt;span class="s2"&gt;"Build passes"&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;Next time, you skip the pain.&lt;/p&gt;

&lt;h2&gt;
  
  
  What changes in practice
&lt;/h2&gt;

&lt;p&gt;Without this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;you repeat instructions&lt;/li&gt;
&lt;li&gt;AI drifts&lt;/li&gt;
&lt;li&gt;results are inconsistent&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;With this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the agent starts aligned&lt;/li&gt;
&lt;li&gt;avoids past mistakes&lt;/li&gt;
&lt;li&gt;gets to the result faster&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why this works
&lt;/h2&gt;

&lt;p&gt;Because:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;we stop storing what was said&lt;/em&gt;&lt;br&gt;
&lt;em&gt;and start storing what worked&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Where it lives
&lt;/h2&gt;

&lt;p&gt;Right inside your repo:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;.agent/aep/&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;This means:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;version controlled&lt;/li&gt;
&lt;li&gt;team-visible&lt;/li&gt;
&lt;li&gt;agent-readable&lt;/li&gt;
&lt;li&gt;portable&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How you use it
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Solve a task with AI&lt;/li&gt;
&lt;li&gt;Get a good result&lt;/li&gt;
&lt;li&gt;Save it as AEP&lt;/li&gt;
&lt;li&gt;Reuse it next time&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  This is not another abstraction layer
&lt;/h2&gt;

&lt;p&gt;This is not about:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;more prompts&lt;/li&gt;
&lt;li&gt;complex frameworks&lt;/li&gt;
&lt;li&gt;magic&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It’s about something very practical:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;stop losing working solutions&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The uncomfortable truth
&lt;/h2&gt;

&lt;p&gt;We already know how to get good results from AI.&lt;/p&gt;

&lt;p&gt;But:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;we don’t know how to keep them&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;AEP is an attempt to fix that.&lt;/p&gt;

&lt;h2&gt;
  
  
  Status
&lt;/h2&gt;

&lt;p&gt;Experimental and open source.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.github.com/Robi-Labs/AEP" rel="noopener noreferrer"&gt;GitHub&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Install:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;npx @smithery/cli@latest skill add Robi-Labs/aep&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  TL;DR
&lt;/h2&gt;

&lt;p&gt;AI keeps starting from zero.&lt;br&gt;
AEP helps it remember what actually worked.&lt;/p&gt;

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