<?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: Kashyap Jois</title>
    <description>The latest articles on DEV Community by Kashyap Jois (@joiskash).</description>
    <link>https://dev.to/joiskash</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%2F3913432%2F9512c02b-b934-4263-94a6-1e50293a50eb.png</url>
      <title>DEV Community: Kashyap Jois</title>
      <link>https://dev.to/joiskash</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/joiskash"/>
    <language>en</language>
    <item>
      <title>The perfect agent orchestration tool for your friendly ADHD developer</title>
      <dc:creator>Kashyap Jois</dc:creator>
      <pubDate>Tue, 05 May 2026 08:28:06 +0000</pubDate>
      <link>https://dev.to/joiskash/the-perfect-agent-orchestration-tool-for-your-friendly-adhd-developer-33jp</link>
      <guid>https://dev.to/joiskash/the-perfect-agent-orchestration-tool-for-your-friendly-adhd-developer-33jp</guid>
      <description>&lt;p&gt;I have a serious problem, I can't work on just one thing for too long. I lose interest really fast. Before agentic coding, my desire to work on different projects and components of a project was easily managed. I could work on a really large project with a mobile app, a dashboard, a backend, multiple micro-services, while I let my YOLO model train in the background.&lt;br&gt;
But once agentic coding came into the picture, I became an "ALT-TAB" junky. I just kept opening multiple terminals and switching between ssh sessions, typing prompts and moving on.&lt;br&gt;
The main issue with this is the "illusion" of progress. You think you are super productive and have made great progress on atleast 10 different things, but you wake up the next day and see 10 terminals, 5 dead ssh sessions, 3 conversations you dont even remember about, clear everything, re initialize contexts and "ALT-TAB" your way into a dopamine hit.&lt;br&gt;
My business partner - Akhil was facing the same issues and felt that we needed a platform to help people like us actually make progress and not get lost in this mirage of contexts, prompts, and I hate to say it but.. AI SLOP.&lt;br&gt;
So we did what any reasonable developer does when they hit a workflow problem - build a side-project to fix it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://github.com/Apra-Labs/apra-fleet" rel="noopener noreferrer"&gt;Apra Fleet&lt;/a&gt;&lt;/strong&gt; — an open-source MCP server that lets one Claude Code session boss around agents on every machine I own. Register machines, dispatch work, get results back. One conversation. No YAML. No dashboards.&lt;/p&gt;


&lt;h2&gt;
  
  
  The "aha" moment was embarrassingly simple
&lt;/h2&gt;

&lt;p&gt;I kept doing this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Terminal 1: *deep in flow, building auth module*
Slack:      "hey tests are failing on staging"
Terminal 2: ssh into staging box
Terminal 2: start new Claude session
Terminal 2: re-explain the entire codebase architecture
Terminal 2: wait
Terminal 2: fix
Terminal 1: ...what was I doing again?
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Each hop cost me 10-15 minutes just to get back in the zone. Six hops a day and I'm mass-producing nothing. Extremely efficiently.&lt;/p&gt;

&lt;p&gt;The fix turned out to be stupidly obvious: what if I just &lt;em&gt;told Claude&lt;/em&gt; to do it on the other machine? From right here?&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;em&gt;"Run the test suite on staging and fix what's broken. I'll keep working."&lt;/em&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;That's it. That's the product.&lt;/p&gt;




&lt;h2&gt;
  
  
  Plot twist: you don't even need two machines
&lt;/h2&gt;

&lt;p&gt;The thing we got wrong in v0.1: we made this sound like you need a homelab and a rack of servers. You don't.&lt;/p&gt;

&lt;p&gt;The killer feature is &lt;strong&gt;doer-reviewer loops on a single machine.&lt;/strong&gt; Register two local members - one writes code, one reviews it.Fleet pairs them:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;You:   "Register local member `doer`, folder ~/projects/myapp.
        Register local member `reviewer`, different folder.
        Pair them on the auth module."

Fleet: Doer writes code → checkpoint → Reviewer reads it cold
       → "this will break if the token expires mid-request"
       → Doer fixes → Reviewer approves → done.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Folder isolation with git commits and an isolated git branch avoids fleet members stepping over each others feet.&lt;br&gt;&lt;br&gt;
The reviewer runs in a separate workspace context so it's not anchored to the same assumptions. It's like rubber-ducking except the duck actually talks back and has opinions about your error handling.&lt;/p&gt;

&lt;p&gt;Everything gets a second pair of eyes before I even look at it. My PR review comments dropped by like 60% and my ego is handling it fine.&lt;/p&gt;


&lt;h2&gt;
  
  
  Install (it's a one-liner, I'm not a monster)
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;macOS (Apple Silicon)&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://github.com/Apra-Labs/apra-fleet/releases/latest/download/apra-fleet-installer-darwin-arm64 &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-o&lt;/span&gt; apra-fleet-installer &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;chmod&lt;/span&gt; +x apra-fleet-installer &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; ./apra-fleet-installer &lt;span class="nb"&gt;install&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Linux (x64)&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://github.com/Apra-Labs/apra-fleet/releases/latest/download/apra-fleet-installer-linux-x64 &lt;span class="se"&gt;\&lt;/span&gt;
  &lt;span class="nt"&gt;-o&lt;/span&gt; apra-fleet-installer &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; &lt;span class="nb"&gt;chmod&lt;/span&gt; +x apra-fleet-installer &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; ./apra-fleet-installer &lt;span class="nb"&gt;install&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;strong&gt;Windows (PowerShell)&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight powershell"&gt;&lt;code&gt;&lt;span class="n"&gt;Invoke-WebRequest&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nt"&gt;-Uri&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nx"&gt;https://github.com/Apra-Labs/apra-fleet/releases/latest/download/apra-fleet-installer-win-x64.exe&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="se"&gt;`
&lt;/span&gt;&lt;span class="w"&gt;  &lt;/span&gt;&lt;span class="nt"&gt;-OutFile&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nx"&gt;apra-fleet-installer.exe&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="n"&gt;\apra-fleet-installer.exe&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nx"&gt;install&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then in Claude Code:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight console"&gt;&lt;code&gt;&lt;span class="go"&gt;/mcp
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Fleet skill + PM skill installed by default. No config files. I mass-produced the setup so you don't have to.&lt;/p&gt;




&lt;h2&gt;
  
  
  "But wait, you're giving Claude SSH access to ALL your machines??"
&lt;/h2&gt;

&lt;p&gt;Yeah I knew someone would say this. Akhil and Mradul (another ALT-TAB Junky) went back and forth on this for weeks. Here's the paranoia we baked in:&lt;/p&gt;

&lt;h3&gt;
  
  
  Passwords never enter the LLM's brain
&lt;/h3&gt;

&lt;p&gt;When you register a machine with a password, Fleet does NOT pass it through Claude. Instead:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;You → "Register web1, password auth, host 192.168.0.5"

Claude → register_member(name="web1", auth_type="password", host="...")
                                            ↑
                                No password in the params

*a wild terminal appears*

You type password in the new window (hidden input)
Password → Unix socket → MCP server → AES-256-GCM encrypted immediately
Claude ← "Member registered successfully"
Claude's context window: blissfully ignorant
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;A whole Unix domain socket side-channel so Claude never sees your password. We wrote an entire &lt;a href="https://github.com/Apra-Labs/apra-fleet/blob/main/docs/adr-oob-password.md" rel="noopener noreferrer"&gt;ADR&lt;/a&gt; about why every other approach was worse.&lt;/p&gt;

&lt;h3&gt;
  
  
  The credential store (new in v0.1.8, very proud of this one)
&lt;/h3&gt;

&lt;p&gt;General-purpose secret storage with &lt;code&gt;{{secure.NAME}}&lt;/code&gt; substitution:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Store it once — Fleet opens a separate terminal, never asks in chat&lt;/span&gt;
credential_store_set  &lt;span class="nv"&gt;name&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;github_pat

&lt;span class="c"&gt;# Use it in commands — resolved server-side, Claude sees nothing&lt;/span&gt;
execute_command  &lt;span class="nb"&gt;command&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s2"&gt;"curl -H 'Authorization: Bearer {{secure.github_pat}}' https://api.github.com/user"&lt;/span&gt;

&lt;span class="c"&gt;# Output is auto-redacted before the LLM sees it&lt;/span&gt;
&lt;span class="c"&gt;# → Authorization: Bearer [REDACTED:github_pat]&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;And the one hard rule: &lt;code&gt;execute_prompt&lt;/code&gt; does NOT support &lt;code&gt;{{secure.NAME}}&lt;/code&gt;. Secrets never go into LLM prompts. Not sometimes. Not "just this once." Never. I will mass-produce error messages at you if you try.&lt;/p&gt;

&lt;h3&gt;
  
  
  Scoped git tokens because long-lived PATs are crimes
&lt;/h3&gt;

&lt;p&gt;Each member gets short-lived (1hr) tokens via GitHub App:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="na"&gt;members&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
  &lt;span class="na"&gt;code-analyst&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="na"&gt;git_access&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;read&lt;/span&gt;          &lt;span class="c1"&gt;# can clone, can't push&lt;/span&gt;
    &lt;span class="na"&gt;git_repos&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="pi"&gt;[&lt;/span&gt;&lt;span class="nv"&gt;Apra-Labs/ApraPipes&lt;/span&gt;&lt;span class="pi"&gt;]&lt;/span&gt;

  &lt;span class="na"&gt;release-bot&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt;
    &lt;span class="na"&gt;git_access&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;admin&lt;/span&gt;         &lt;span class="c1"&gt;# full send&lt;/span&gt;
    &lt;span class="na"&gt;git_repos&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="pi"&gt;[&lt;/span&gt;&lt;span class="s2"&gt;"&lt;/span&gt;&lt;span class="s"&gt;*"&lt;/span&gt;&lt;span class="pi"&gt;]&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Compromised member? Token expires in an hour, only touches scoped repos. The App private key never leaves the master machine. Sleep well.&lt;/p&gt;




&lt;h2&gt;
  
  
  Multi-machine mode (when one machine can't contain you)
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="nf"&gt;register_member&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
  &lt;span class="n"&gt;friendly_name&lt;/span&gt;          &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;gpu-trainer&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="n"&gt;host&lt;/span&gt;                   &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;10.0.0.5&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="n"&gt;username&lt;/span&gt;               &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;ubuntu&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="n"&gt;key_path&lt;/span&gt;               &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;~/.ssh/gpu.pem&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="n"&gt;work_folder&lt;/span&gt;            &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;/home/ubuntu/training&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="n"&gt;cloud_provider&lt;/span&gt;         &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;aws&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="n"&gt;cloud_instance_id&lt;/span&gt;      &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;i-0abc123def456789a&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="n"&gt;cloud_idle_timeout_min&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;30&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The instance doesn't need to be running. Fleet auto-starts on demand, auto-stops after 30 min idle. GPU-aware — if &lt;code&gt;nvidia-smi&lt;/code&gt; shows active compute, the idle timer backs off. Your training job won't get killed at epoch 97 of 100. (Ask me how I know.)&lt;/p&gt;

&lt;p&gt;Session IDs persist per member. The remote agent remembers prior conversations. Not stateless RPC — actual continuity.&lt;/p&gt;

&lt;h3&gt;
  
  
  Long-running tasks (the "set it and forget it" pattern)
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="nf"&gt;execute_command&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
  &lt;span class="n"&gt;member_id&lt;/span&gt;       &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;gpu-trainer&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="n"&gt;command&lt;/span&gt;         &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;python train.py --epochs 100&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="n"&gt;long_running&lt;/span&gt;    &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;true&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="n"&gt;max_retries&lt;/span&gt;     &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;3&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
  &lt;span class="n"&gt;restart_command&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;python train.py --resume checkpoint.pt&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Returns immediately. A bash wrapper on the remote handles &lt;code&gt;nohup&lt;/code&gt;, PID tracking, status JSON, heartbeat every 5 min (prevents idle shutdown), and auto-retry with checkpoint resume on crash.&lt;/p&gt;

&lt;p&gt;Check whenever:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="nf"&gt;monitor_task&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;member_id&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;gpu-trainer&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;task_id&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;task-lx4k2z&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;auto_stop&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="n"&gt;true&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="c1"&gt;# → { status: "running", gpuUtilization: 87, logTail: "Epoch 45/100, loss=0.234..." }
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;auto_stop: true&lt;/code&gt; shuts down the EC2 instance when the job finishes. Because I also mass-produce AWS bills when I forget.&lt;/p&gt;




&lt;h2&gt;
  
  
  The PM skill (project management, but make it terminal)
&lt;/h2&gt;

&lt;p&gt;Built-in, installed by default:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight console"&gt;&lt;code&gt;&lt;span class="gp"&gt;/pm init my-project          #&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;scaffolds project folder
&lt;span class="gp"&gt;/pm plan "OAuth2 auth flow"  #&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;generates + reviews implementation plan
&lt;span class="gp"&gt;/pm pair doer reviewer       #&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;automated doer-reviewer loop
&lt;span class="gp"&gt;/pm status build-server      #&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;where are we
&lt;span class="gp"&gt;/pm deploy build-server      #&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;ship it
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;State is git-tracked — &lt;code&gt;PLAN.md&lt;/code&gt;, &lt;code&gt;progress.json&lt;/code&gt;, &lt;code&gt;feedback.md&lt;/code&gt;. Every agent reads the same state before acting. The PM handles git transport between doer and reviewer, sends context, and iterates until the reviewer approves.&lt;/p&gt;

&lt;p&gt;It's like having a very patient, very literal project manager who never takes PTO and never asks "can we sync on this?"&lt;/p&gt;




&lt;h2&gt;
  
  
  Mix your providers (vendor lock-in is for people who read EULAs)
&lt;/h2&gt;

&lt;p&gt;Members aren't locked to Claude. Mix freely:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Role&lt;/th&gt;
&lt;th&gt;Recommended&lt;/th&gt;
&lt;th&gt;Why&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;PM&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Claude Opus/Sonnet&lt;/td&gt;
&lt;td&gt;Most tested for planning&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Doer&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Anything&lt;/td&gt;
&lt;td&gt;Sonnet, Gemini Flash, Codex — pick your fighter&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Reviewer&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Premium tier&lt;/td&gt;
&lt;td&gt;Catches what smaller models miss&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;"Register `gemini-worker` at 192.168.1.11 as a Gemini member."
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Same &lt;code&gt;execute_prompt&lt;/code&gt; call, different brain under the hood. Fleet resolves the right CLI per member at runtime.&lt;/p&gt;




&lt;h2&gt;
  
  
  What's missing (because honesty builds trust faster than marketing)
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Ollama / local models&lt;/strong&gt; — architecture supports it, adapter not built yet. LocalLLaMA people, I see you, I'm coming&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GCP / Azure&lt;/strong&gt; — only AWS EC2 today&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Docker / K8s members&lt;/strong&gt; — roadmap&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Web dashboard&lt;/strong&gt; — foundation exists, not shipped&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;npm publish&lt;/strong&gt; — &lt;code&gt;npx apra-fleet install&lt;/code&gt; coming soon
Apache 2.0. v0.1.8. Actively developed. Unreasonably fun to work on.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/Apra-Labs/apra-fleet" rel="noopener noreferrer"&gt;Apra-Labs/apra-fleet&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;What's your multi-agent setup look like? I'm genuinely curious how other people are solving the "4 machines, 1 brain, 0 discipline" problem. Drop your workflow below — or tell me what Fleet is missing that'd make you try it.&lt;/p&gt;

</description>
      <category>claude</category>
      <category>gemini</category>
      <category>ai</category>
      <category>opensource</category>
    </item>
  </channel>
</rss>
