<?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: yueyue900</title>
    <description>The latest articles on DEV Community by yueyue900 (@yueyue900).</description>
    <link>https://dev.to/yueyue900</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%2F3973381%2F2853e609-9ef4-4591-98a4-f7f68d0fc2d0.png</url>
      <title>DEV Community: yueyue900</title>
      <link>https://dev.to/yueyue900</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/yueyue900"/>
    <language>en</language>
    <item>
      <title>How I Use 3 AI Coding Agents Together</title>
      <dc:creator>yueyue900</dc:creator>
      <pubDate>Mon, 08 Jun 2026 05:18:50 +0000</pubDate>
      <link>https://dev.to/yueyue900/how-i-use-3-ai-coding-agents-together-3m0f</link>
      <guid>https://dev.to/yueyue900/how-i-use-3-ai-coding-agents-together-3m0f</guid>
      <description>&lt;p&gt;I stopped trying to find the &lt;em&gt;one&lt;/em&gt; perfect AI coding agent.&lt;/p&gt;

&lt;p&gt;For about six months I bounced between tools — one was great at planning, another wrote&lt;br&gt;
cleaner diffs, a third caught bugs the first two confidently shipped. Switching between them&lt;br&gt;
meant copy-pasting context all day, and I was the only thing holding the workflow together.&lt;/p&gt;

&lt;p&gt;So I flipped it around. Instead of picking one agent, I now run &lt;strong&gt;three at once&lt;/strong&gt;, each doing&lt;br&gt;
the job it's actually good at. This is the setup that finally stuck.&lt;/p&gt;

&lt;h2&gt;
  
  
  The three roles
&lt;/h2&gt;

&lt;p&gt;I don't think of them as "tools" anymore. I think of them as a small team with three roles:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;The Planner&lt;/strong&gt; — reads the issue, explores the codebase, and writes a step-by-step plan.
No code yet. Its only job is to be right about &lt;em&gt;what&lt;/em&gt; to do.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The Implementer&lt;/strong&gt; — takes the plan and writes the actual diff. It's fast and literal,
which is exactly what you want once the thinking is done.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The Reviewer&lt;/strong&gt; — never sees the plan. It only sees the final diff and asks "is this
correct, and what did you miss?" Keeping it blind to the plan is the whole point — it can't
rationalize a mistake it helped make.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The magic isn't any single agent. It's that the Planner's output becomes the Implementer's&lt;br&gt;
input, and the Reviewer is an adversary to both. Three cheap passes beat one expensive one.&lt;/p&gt;

&lt;h2&gt;
  
  
  Managing the agents without losing my mind
&lt;/h2&gt;

&lt;p&gt;The reason this used to be painful is that every agent has its own install steps, its own&lt;br&gt;
config, its own model keys. Running three meant maintaining three setups by hand.&lt;/p&gt;

&lt;p&gt;I now manage all of them through the&lt;br&gt;
&lt;a href="https://openagents.org/launcher" rel="noopener noreferrer"&gt;OpenAgents Launcher&lt;/a&gt;. The easiest way I can describe it:&lt;br&gt;
&lt;strong&gt;it's Ollama, but for AI coding agents.&lt;/strong&gt; You browse a catalog, install an agent with one&lt;br&gt;
command, and it shows up ready to run with consistent configuration. Swapping the Implementer&lt;br&gt;
for a different model is a one-line change instead of an afternoon.&lt;/p&gt;

&lt;p&gt;That single detail — install and manage agents the way you manage local models — is what made&lt;br&gt;
a three-agent workflow practical instead of a science project.&lt;/p&gt;

&lt;h2&gt;
  
  
  Letting them actually talk to each other
&lt;/h2&gt;

&lt;p&gt;A plan is only useful if the next agent can read it. Early on I was the message bus: copying&lt;br&gt;
the Planner's output into the Implementer, then the diff into the Reviewer. That's fine for a&lt;br&gt;
demo and miserable for real work.&lt;/p&gt;

&lt;p&gt;The fix was giving them a shared room. The&lt;br&gt;
&lt;a href="https://github.com/openagents-org/openagents" rel="noopener noreferrer"&gt;OpenAgents Workspace&lt;/a&gt; is best described as&lt;br&gt;
&lt;strong&gt;Slack for AI agents&lt;/strong&gt; — an open-source space where multiple agents (and I) share the same&lt;br&gt;
channel, files, and history. The Planner drops its plan, the Implementer picks it up and posts&lt;br&gt;
a diff, the Reviewer replies with findings. I read along and step in only when I disagree.&lt;/p&gt;

&lt;p&gt;Because it's open source, I can see exactly how messages are routed, which matters when you're&lt;br&gt;
trusting agents to hand work to each other.&lt;/p&gt;

&lt;h2&gt;
  
  
  A real run, start to finish
&lt;/h2&gt;

&lt;p&gt;Here's a typical task: &lt;em&gt;"Add rate limiting to the public API endpoints."&lt;/em&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;I drop the issue into the workspace and @mention the Planner.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Planner&lt;/strong&gt; reads the router, finds all the public endpoints, and posts a plan: add a
middleware, use a token-bucket per API key, cover three specific routes, add tests.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Implementer&lt;/strong&gt; picks up the plan and posts a diff — middleware, wiring, and tests — in one
pass, because it isn't also trying to &lt;em&gt;decide&lt;/em&gt; anything.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Reviewer&lt;/strong&gt; sees only the diff. It flags that one endpoint was missed (a websocket upgrade
route the Planner never listed) and that the bucket refill math is off by a factor of the
window size.&lt;/li&gt;
&lt;li&gt;I read three short messages instead of writing the feature myself, send the Reviewer's two
findings back to the Implementer, and merge.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Elapsed hands-on time for me: about the length of a coffee. The two bugs the Reviewer caught&lt;br&gt;
are exactly the kind I would have shipped at 5pm on a Friday.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why three, specifically
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;One agent&lt;/strong&gt; has to plan, build, and check its own work — and it's an unreliable judge of
its own output.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Two agents&lt;/strong&gt; (build + review) is a real upgrade, but the builder still carries the planning
load, which is where most mistakes are born.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Three agents&lt;/strong&gt; separates &lt;em&gt;deciding&lt;/em&gt;, &lt;em&gt;doing&lt;/em&gt;, and &lt;em&gt;doubting&lt;/em&gt;. Each role gets a clean,
narrow job, and the Reviewer's independence is structural rather than something I have to
remember to enforce.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You can push this further — add a second Reviewer with a security lens, or a Planner panel that&lt;br&gt;
proposes two approaches and votes. But three is the smallest setup that consistently beats me&lt;br&gt;
working alone, and it's where I'd tell anyone to start.&lt;/p&gt;

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

&lt;p&gt;If you want to reproduce this, the two pieces are:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The &lt;a href="https://openagents.org/launcher" rel="noopener noreferrer"&gt;OpenAgents Launcher&lt;/a&gt; to install and manage the agents.&lt;/li&gt;
&lt;li&gt;The &lt;a href="https://github.com/openagents-org/openagents" rel="noopener noreferrer"&gt;OpenAgents project on GitHub&lt;/a&gt; for the
open-source workspace that lets them collaborate.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Start with two roles if three feels like a lot — a Planner and a Reviewer around whatever agent&lt;br&gt;
you already use. Once you watch a blind Reviewer catch a bug your main agent was proud of,&lt;br&gt;
you'll add the third.&lt;/p&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>coding</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
