<?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: odyth</title>
    <description>The latest articles on DEV Community by odyth (@odyth).</description>
    <link>https://dev.to/odyth</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%2F3916748%2F598aad39-9c13-4707-b329-539c4cfc5b3a.jpg</url>
      <title>DEV Community: odyth</title>
      <link>https://dev.to/odyth</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/odyth"/>
    <language>en</language>
    <item>
      <title>What If AI Coding Agents Worked Like CI Pipelines?</title>
      <dc:creator>odyth</dc:creator>
      <pubDate>Wed, 06 May 2026 22:10:03 +0000</pubDate>
      <link>https://dev.to/odyth/what-if-ai-coding-agents-worked-like-ci-pipelines-1c7f</link>
      <guid>https://dev.to/odyth/what-if-ai-coding-agents-worked-like-ci-pipelines-1c7f</guid>
      <description>&lt;p&gt;Most AI coding tools have a weird hidden cost:&lt;/p&gt;

&lt;p&gt;They use an LLM to decide what another LLM should do next.&lt;/p&gt;

&lt;p&gt;That means you are spending tokens on &lt;strong&gt;routing&lt;/strong&gt;, not just on the actual coding.&lt;/p&gt;

&lt;p&gt;I built &lt;strong&gt;RedQueen&lt;/strong&gt; to flip that model.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is RedQueen?
&lt;/h2&gt;

&lt;p&gt;RedQueen is an open-source, self-hosted orchestrator for AI coding agents.&lt;/p&gt;

&lt;p&gt;Instead of asking an LLM, “what should happen next?”, RedQueen uses a deterministic state machine to move work through a software development pipeline:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;spec → code → review → test → human review
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;No token spend for orchestration.&lt;/p&gt;

&lt;p&gt;No mysterious agent loop.&lt;/p&gt;

&lt;p&gt;No “trust me bro” routing logic.&lt;/p&gt;

&lt;p&gt;Just a debuggable workflow you can read, edit, and run yourself.&lt;/p&gt;

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

&lt;p&gt;Autonomous coding gets messy when one giant prompt is responsible for everything.&lt;/p&gt;

&lt;p&gt;RedQueen breaks the work into isolated AI workers:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;one worker writes the spec&lt;/li&gt;
&lt;li&gt;one writes the code&lt;/li&gt;
&lt;li&gt;one reviews the code&lt;/li&gt;
&lt;li&gt;one tests it&lt;/li&gt;
&lt;li&gt;humans approve at configurable gates&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each phase has a focused job.&lt;/p&gt;

&lt;p&gt;And the workflow itself lives in config, not vibes.&lt;/p&gt;

&lt;p&gt;Want to add a security review step? Add it.&lt;/p&gt;

&lt;p&gt;Want to remove spec review? Remove it.&lt;/p&gt;

&lt;p&gt;Want the agent to stop and wait for a human before touching production code? Make that a gate.&lt;/p&gt;

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

&lt;p&gt;I do not think the future of AI coding is one giant autonomous blob.&lt;/p&gt;

&lt;p&gt;I think it looks more like a tiny dev team:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;focused workers&lt;/li&gt;
&lt;li&gt;explicit handoffs&lt;/li&gt;
&lt;li&gt;retry limits&lt;/li&gt;
&lt;li&gt;human review gates&lt;/li&gt;
&lt;li&gt;issue tracker sync&lt;/li&gt;
&lt;li&gt;source control integration&lt;/li&gt;
&lt;li&gt;boring, readable orchestration&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Boring is good.&lt;/p&gt;

&lt;p&gt;Boring is how you debug things at 2 a.m.&lt;/p&gt;

&lt;h2&gt;
  
  
  Quickstart
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-g&lt;/span&gt; redqueen
redqueen init &lt;span class="nt"&gt;-y&lt;/span&gt;
redqueen start
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Open the dashboard, label a GitHub issue, and watch it move through the pipeline.&lt;/p&gt;

&lt;p&gt;RedQueen currently dispatches Claude Code workers and supports GitHub Issues and Jira, with the adapter pattern designed so more integrations can be added cleanly.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I made it
&lt;/h2&gt;

&lt;p&gt;I wanted AI coding agents that felt less like slot machines and more like build systems.&lt;/p&gt;

&lt;p&gt;A build system does not spend tokens deciding whether to compile.&lt;/p&gt;

&lt;p&gt;A CI pipeline does not ask an LLM whether tests should run.&lt;/p&gt;

&lt;p&gt;So why should an AI coding workflow?&lt;/p&gt;

&lt;p&gt;RedQueen is my attempt at making autonomous coding more:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;deterministic&lt;/li&gt;
&lt;li&gt;inspectable&lt;/li&gt;
&lt;li&gt;self-hosted&lt;/li&gt;
&lt;li&gt;configurable&lt;/li&gt;
&lt;li&gt;human-controlled&lt;/li&gt;
&lt;li&gt;cheap to orchestrate&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It is still early, rough around the edges, and very much a v0.1 preview.&lt;/p&gt;

&lt;p&gt;But the core idea is simple:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Stop orchestrating with LLMs.&lt;br&gt;
Start commanding them.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Check it out here:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://redqueen.sh" rel="noopener noreferrer"&gt;https://redqueen.sh&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;GitHub stars, bug reports, brutal feedback, and weird workflow ideas are all welcome.&lt;/p&gt;

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