<?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: Gan</title>
    <description>The latest articles on DEV Community by Gan (@gan_e3fcc1c88e8).</description>
    <link>https://dev.to/gan_e3fcc1c88e8</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%2F3831434%2F4fc6215b-f2c5-45ab-8285-bffe107df6d5.jpg</url>
      <title>DEV Community: Gan</title>
      <link>https://dev.to/gan_e3fcc1c88e8</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/gan_e3fcc1c88e8"/>
    <language>en</language>
    <item>
      <title>I built a pipeline orchestrator to improve code quality beyond single-shot prompts</title>
      <dc:creator>Gan</dc:creator>
      <pubDate>Wed, 18 Mar 2026 16:08:34 +0000</pubDate>
      <link>https://dev.to/gan_e3fcc1c88e8/i-built-a-pipeline-orchestrator-to-improve-code-quality-beyond-single-shot-prompts-4fkl</link>
      <guid>https://dev.to/gan_e3fcc1c88e8/i-built-a-pipeline-orchestrator-to-improve-code-quality-beyond-single-shot-prompts-4fkl</guid>
      <description>&lt;p&gt;Despite improvements in coding agents, &lt;strong&gt;single-pass prompting rarely produces production-quality results&lt;/strong&gt;. There’s still a lot of &lt;strong&gt;manual steering&lt;/strong&gt; involved.&lt;/p&gt;

&lt;p&gt;My workflow lately has looked like this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Ask Claude to &lt;strong&gt;plan first (no code)&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Ask it to &lt;strong&gt;implement with constraints&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Ask it to &lt;strong&gt;review its own work&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Repeat reviews&lt;/strong&gt; until no new issues are found&lt;/li&gt;
&lt;li&gt;Do a final human review before committing&lt;/li&gt;
&lt;/ul&gt;




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

&lt;p&gt;Getting strong results from coding agents is already a &lt;strong&gt;multi-step process&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Planning&lt;/li&gt;
&lt;li&gt;Implementation&lt;/li&gt;
&lt;li&gt;Iterative review&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But this workflow is &lt;strong&gt;not enforced&lt;/strong&gt; — it lives in:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Ad-hoc prompts&lt;/li&gt;
&lt;li&gt;Manual iteration&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;As a result, it becomes:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Inconsistent&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Hard to reproduce&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Time-consuming to babysit&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  The solution
&lt;/h2&gt;

&lt;p&gt;I turned this into an &lt;strong&gt;automated pipeline&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Instead of one agent doing everything, a &lt;strong&gt;manager coordinates multiple agents across stages&lt;/strong&gt;:&lt;/p&gt;

&lt;p&gt;&lt;code&gt;Plan → Implement → Verify → Review → Fix → Repeat&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Each step gets &lt;strong&gt;targeted prompts&lt;/strong&gt;, not a generic instruction blob.&lt;/p&gt;

&lt;p&gt;For example:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Planning →&lt;/strong&gt; focuses on root-cause solutions, not workarounds&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Implementation →&lt;/strong&gt; enforces full execution of the plan with well-documented code&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Verification →&lt;/strong&gt; runs repo-specific commands (tests, linting, checks)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Review →&lt;/strong&gt; applies clear goals and severity calibration
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This is far more reliable than relying on a static &lt;code&gt;AGENTS.md&lt;/code&gt; that may or may not be followed.&lt;/p&gt;




&lt;h2&gt;
  
  
  Workdocs and traceability
&lt;/h2&gt;

&lt;p&gt;Every step writes to a persistent &lt;strong&gt;workdoc&lt;/strong&gt;.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Full context&lt;/strong&gt; is carried across stages&lt;/li&gt;
&lt;li&gt;Each agent sees what previous steps did&lt;/li&gt;
&lt;li&gt;Humans can &lt;strong&gt;inspect the entire process&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Runtime evidence is logged for &lt;strong&gt;traceability&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  What this enables
&lt;/h2&gt;

&lt;p&gt;Once the pipeline is enforced, a full system naturally emerges:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Parallel execution via &lt;strong&gt;isolated git worktrees&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Dependency-aware task graphs&lt;/strong&gt; (tasks run in waves)&lt;/li&gt;
&lt;li&gt;Automatic &lt;strong&gt;branch integration + conflict resolution&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;Task-specific pipelines &lt;strong&gt;(feature, bug, refactor, etc.)&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Automatic task decomposition&lt;/strong&gt; into subtasks&lt;/li&gt;
&lt;li&gt;Human &lt;strong&gt;approval gates&lt;/strong&gt; at key stages&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Result
&lt;/h2&gt;

&lt;p&gt;Instead of managing prompts, you can &lt;strong&gt;just fire tasks at the system&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;And get:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Higher code quality&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Less babysitting&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;More predictable outcomes&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Full visibility into what happened&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It starts to feel less like prompting an assistant, and more like &lt;strong&gt;running a real development workflow&lt;/strong&gt;.&lt;/p&gt;




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



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;pip &lt;span class="nb"&gt;install &lt;/span&gt;overdrive-ai
&lt;span class="nb"&gt;cd&lt;/span&gt; /path/to/your/repo
overdrive server
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;






&lt;h2&gt;
  
  
  Repo
&lt;/h2&gt;

&lt;p&gt;Open source (MIT):&lt;br&gt;
&lt;a href="https://github.com/Execution-Labs/overdrive" rel="noopener noreferrer"&gt;https://github.com/Execution-Labs/overdrive&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If you're exploring agent-based development workflows, would love your feedback.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjy4bqkrh7uihwl90cqqi.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjy4bqkrh7uihwl90cqqi.png" alt=" " width="800" height="521"&gt;&lt;/a&gt;&lt;/p&gt;

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