<?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: Jupiteros_ai</title>
    <description>The latest articles on Forem by Jupiteros_ai (@jupiteros_ai).</description>
    <link>https://forem.com/jupiteros_ai</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%2F3806237%2Fc5977270-84d8-43cd-9cb7-b15b7bbd4413.png</url>
      <title>Forem: Jupiteros_ai</title>
      <link>https://forem.com/jupiteros_ai</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/jupiteros_ai"/>
    <language>en</language>
    <item>
      <title>Why Running Multiple AI Coding Agents Creates Chaos (And How We're Fixing It)</title>
      <dc:creator>Jupiteros_ai</dc:creator>
      <pubDate>Thu, 05 Mar 2026 15:40:50 +0000</pubDate>
      <link>https://forem.com/jupiteros_ai/why-running-multiple-ai-coding-agents-creates-chaos-and-how-were-fixing-it-564c</link>
      <guid>https://forem.com/jupiteros_ai/why-running-multiple-ai-coding-agents-creates-chaos-and-how-were-fixing-it-564c</guid>
      <description>&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%2F737wh2okurg4v764lu23.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%2F737wh2okurg4v764lu23.png" alt=" " width="800" height="446"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  The Dream: Parallel AI Coding
&lt;/h2&gt;

&lt;p&gt;You have a complex task — refactoring an auth module that touches 12 files across your API, frontend, tests, and docs.&lt;/p&gt;

&lt;p&gt;A single AI agent (Claude, Copilot, Cursor) would take 20-30 minutes. It might hit context limits. It processes files sequentially.&lt;/p&gt;

&lt;p&gt;So you think: "I'll just open 5 terminals and split the work."&lt;/p&gt;

&lt;h2&gt;
  
  
  The Reality: 5 Minutes of Chaos
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Terminal 1:&lt;/strong&gt; Starts refactoring &lt;code&gt;auth.rs&lt;/code&gt;&lt;br&gt;
&lt;strong&gt;Terminal 3:&lt;/strong&gt; Also starts editing &lt;code&gt;auth.rs&lt;/code&gt;&lt;br&gt;
→ ❌ File conflict. One overwrites the other.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Terminal 4:&lt;/strong&gt; Writes tests importing a function from &lt;code&gt;api.rs&lt;/code&gt;&lt;br&gt;
&lt;strong&gt;Terminal 2:&lt;/strong&gt; Hasn't written that function yet&lt;br&gt;
→ ❌ Dependency failure.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Terminal 5:&lt;/strong&gt; Documents the &lt;code&gt;/auth/login&lt;/code&gt; endpoint&lt;br&gt;
&lt;strong&gt;Terminal 3:&lt;/strong&gt; Just renamed it to &lt;code&gt;/auth/signin&lt;/code&gt;&lt;br&gt;
→ ❌ Stale reference.&lt;/p&gt;

&lt;p&gt;Without coordination, parallel AI coding is worse than sequential. You save time on execution but lose it on conflict resolution.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Existing Solutions Don't Fit
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Multi-agent frameworks (AutoGen, CrewAI, LangGraph):&lt;/strong&gt;&lt;br&gt;
These coordinate conversations between agents. They're great for generic multi-agent workflows. But they don't manage file locks, dependency ordering, or codebase-level conflict prevention.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Manual coordination:&lt;/strong&gt;&lt;br&gt;
You become the scheduler. You decide which terminal works on which file. You check for conflicts. You manage dependencies. Congratulations — you are now the bottleneck.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Single agent:&lt;/strong&gt;&lt;br&gt;
Safe but slow. No parallelism. Hits context limits on large tasks.&lt;/p&gt;

&lt;h2&gt;
  
  
  What's Actually Needed
&lt;/h2&gt;

&lt;p&gt;The problem isn't the AI — Claude writes great code. The problem is orchestration:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Task decomposition:&lt;/strong&gt; Breaking a vague request into concrete, parallelizable sub-tasks&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Dependency management:&lt;/strong&gt; Knowing which tasks must finish before others can start&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;File locking:&lt;/strong&gt; Preventing two workers from editing the same file simultaneously&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Monitoring:&lt;/strong&gt; Seeing what every worker is doing in real-time&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Recovery:&lt;/strong&gt; Handling failures without manual intervention&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;None of these require intelligence. They require determinism.&lt;/p&gt;

&lt;h2&gt;
  
  
  Our Approach: Jupiter
&lt;/h2&gt;

&lt;p&gt;We're building Jupiter — a Rust-powered orchestration engine for parallel AI coding agents. One command. N workers. Zero conflicts.&lt;/p&gt;

&lt;p&gt;The key insight: &lt;strong&gt;orchestration doesn't need AI.&lt;/strong&gt; Scheduling, locking, monitoring, and routing are deterministic operations. We write them in Rust (zero tokens). Claude is only used for planning and writing code.&lt;/p&gt;

&lt;p&gt;More architecture details coming this week.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Website:&lt;/strong&gt; &lt;a href="https://jupiteros.ai" rel="noopener noreferrer"&gt;jupiteros.ai&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Discord:&lt;/strong&gt; &lt;a href="https://discord.com/invite/Sekuexw3" rel="noopener noreferrer"&gt;discord.com/invite/Sekuexw3&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>rust</category>
      <category>devtools</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Jupiteros.Ai , a parallel AI orchestration engine , one prompt , one project .</title>
      <dc:creator>Jupiteros_ai</dc:creator>
      <pubDate>Thu, 05 Mar 2026 11:35:18 +0000</pubDate>
      <link>https://forem.com/jupiteros_ai/jupiterosai-a-parallel-ai-orchestration-engine-one-prompt-one-project--1i7k</link>
      <guid>https://forem.com/jupiteros_ai/jupiterosai-a-parallel-ai-orchestration-engine-one-prompt-one-project--1i7k</guid>
      <description>&lt;p&gt;For the past few months, we've been working on a problem every developer using AI coding tools knows too well:&lt;/p&gt;

&lt;p&gt;How do you run multiple AI agents on the same codebase without them creating file conflicts, losing context, or requiring constant manual coordination?&lt;/p&gt;

&lt;p&gt;Our answer is Jupiter, a parallel AI orchestration engine written in Rust.&lt;br&gt;
Here's how it works:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;You describe a complex task (e.g., "refactor the auth module")&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Jupiter analyzes your codebase and creates an execution plan&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It launches N Claude CLI workers simultaneously&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A Rust-based scheduler manages file locking, dependency ordering, and inter-worker communication&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;5.You monitor everything from a real-time terminal dashboard&lt;/p&gt;

&lt;p&gt;The critical design decision: orchestration logic runs in Rust, not in an LLM. Claude is invoked only for reasoning and writing code. Everything else costs zero tokens.&lt;/p&gt;

&lt;p&gt;The result:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Parallel execution without conflicts&lt;/li&gt;
&lt;li&gt;Cost efficiency (80% Rust, 20% Claude)&lt;/li&gt;
&lt;li&gt;Full audit trail and reproducibility&lt;/li&gt;
&lt;li&gt;Single binary, no external dependencies&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We're currently in alpha, with a desktop GUI (Tauri + React) in development.&lt;br&gt;
We're building Jupiter in public with a small community of developers. Join us on Discord to follow the development, test early builds, and shape what &lt;br&gt;
comes next: &lt;/p&gt;

&lt;p&gt;&lt;a href="https://lnkd.in/dawhhwJk" rel="noopener noreferrer"&gt;https://lnkd.in/dawhhwJk&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;hashtag#AI hashtag#DevTools hashtag#Rust hashtag#DeveloperProductivity hashtag#AIAgents hashtag#BuildInPublic&lt;/p&gt;

</description>
      <category>agents</category>
      <category>ai</category>
      <category>rust</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
