<?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: Yeomin Seon</title>
    <description>The latest articles on Forem by Yeomin Seon (@yeominux).</description>
    <link>https://forem.com/yeominux</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%2F3817823%2Ff011d634-e3be-4d2e-be2b-c1357dc0f626.jpeg</url>
      <title>Forem: Yeomin Seon</title>
      <link>https://forem.com/yeominux</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/yeominux"/>
    <language>en</language>
    <item>
      <title>I stopped writing prompts to review PRDs — now I just "grade" my AI agent's homework</title>
      <dc:creator>Yeomin Seon</dc:creator>
      <pubDate>Wed, 11 Mar 2026 05:34:36 +0000</pubDate>
      <link>https://forem.com/yeominux/i-stopped-writing-prompts-to-review-prds-now-i-just-grade-my-ai-agents-homework-pnk</link>
      <guid>https://forem.com/yeominux/i-stopped-writing-prompts-to-review-prds-now-i-just-grade-my-ai-agents-homework-pnk</guid>
      <description>&lt;h2&gt;
  
  
  The copy-paste hell
&lt;/h2&gt;

&lt;p&gt;If you've ever asked an AI agent to review a 50-page PRD, you know the pain.&lt;/p&gt;

&lt;p&gt;You find a problem on page 12. You copy that paragraph. You write a prompt: "In the section about authentication, the retry logic is wrong. Please change it to exponential backoff with max 3 retries."&lt;/p&gt;

&lt;p&gt;The agent finds a different section about authentication. Or it changes the right section but also "improves" three other things you didn't ask for. You lose 10 minutes untangling what happened.&lt;/p&gt;

&lt;p&gt;Repeat this 30 times per document. That was my workflow for months.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I actually wanted
&lt;/h2&gt;

&lt;p&gt;I wanted to do what a professor does with a student's paper:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Draw a line through the bad part&lt;/li&gt;
&lt;li&gt;Write "fix this" or "what does this mean?"&lt;/li&gt;
&lt;li&gt;Hand it back&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The student (agent) should know exactly where the mark is and exactly what type of feedback it is. No ambiguity, no lost context.&lt;/p&gt;

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

&lt;p&gt;&lt;strong&gt;MD Feedback&lt;/strong&gt; — a VS Code extension + MCP server.&lt;/p&gt;

&lt;p&gt;Open any markdown file. Select text. Press &lt;code&gt;2&lt;/code&gt; for fix or &lt;code&gt;3&lt;/code&gt; for question. That's it.&lt;/p&gt;

&lt;p&gt;Each annotation gets stored as an HTML comment inside the markdown itself:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;[FIX] id:abc status:open
Use exponential backoff, not linear retry
(stored as HTML comments — invisible in normal markdown viewers)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Since it's just HTML comments:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;They survive git commits, branches, and merges&lt;/li&gt;
&lt;li&gt;They render invisibly in any markdown viewer&lt;/li&gt;
&lt;li&gt;They don't break the document for anyone not using the tool&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  The MCP part
&lt;/h2&gt;

&lt;p&gt;The extension ships with an MCP server (27 tools). Your AI agent connects and can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Read all annotations with exact locations&lt;/li&gt;
&lt;li&gt;Apply fixes and report what changed&lt;/li&gt;
&lt;li&gt;Check quality gates ("3 fixes remaining → blocked")&lt;/li&gt;
&lt;li&gt;Generate session handoffs so the next session picks up where you left off&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;No copy-paste. No export. The agent reads your red marks directly.&lt;/p&gt;

&lt;h2&gt;
  
  
  The gate system
&lt;/h2&gt;

&lt;p&gt;This changed my workflow the most. The agent cannot proceed to implementation until I approve its fixes. I see inline before/after diffs for every change.&lt;/p&gt;

&lt;p&gt;It's like a pull request review, but for the plan itself.&lt;/p&gt;

&lt;h2&gt;
  
  
  Workflow
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;1. YOU     → Write plan in markdown
2. YOU     → Annotate: highlight (1), fix (2), question (3)
3. AGENT   → Reads annotations via MCP
4. AGENT   → Implements fixes
5. YOU     → Approve / reject inline
6. AGENT   → Gates auto-evaluate: "all done → ready"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;You do steps 1-2 and 5. The agent does the rest.&lt;/p&gt;

&lt;h2&gt;
  
  
  Setup (2 minutes)
&lt;/h2&gt;

&lt;p&gt;Install from &lt;a href="https://marketplace.visualstudio.com/items?itemName=yeominux.md-feedback-vscode" rel="noopener noreferrer"&gt;VS Code Marketplace&lt;/a&gt;, then add to your MCP config:&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;"md-feedback"&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;"npx"&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;"-y"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;"md-feedback"&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;Works with Claude Code, Cursor, Copilot, Codex, Cline, Windsurf, and more.&lt;/p&gt;

&lt;h2&gt;
  
  
  Open source
&lt;/h2&gt;

&lt;p&gt;GitHub: &lt;a href="https://github.com/yeominux/md-feedback" rel="noopener noreferrer"&gt;yeominux/md-feedback&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Free for personal use. I'd love to hear how your review workflow compares — especially if you've found other ways to solve the "agent loses context on long docs" problem.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>vscode</category>
      <category>mcp</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
