<?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: Arnab Karmakar</title>
    <description>The latest articles on DEV Community by Arnab Karmakar (@arnab_karmakar_41f6ef02ca).</description>
    <link>https://dev.to/arnab_karmakar_41f6ef02ca</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4034788%2F9c0f7962-c59f-4070-a07c-8966dc6449d5.png</url>
      <title>DEV Community: Arnab Karmakar</title>
      <link>https://dev.to/arnab_karmakar_41f6ef02ca</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/arnab_karmakar_41f6ef02ca"/>
    <language>en</language>
    <item>
      <title>I built an open-source workspace to tame my AI coding agents</title>
      <dc:creator>Arnab Karmakar</dc:creator>
      <pubDate>Sat, 18 Jul 2026 06:33:44 +0000</pubDate>
      <link>https://dev.to/arnab_karmakar_41f6ef02ca/i-built-an-open-source-workspace-to-tame-my-ai-coding-agents-pb2</link>
      <guid>https://dev.to/arnab_karmakar_41f6ef02ca/i-built-an-open-source-workspace-to-tame-my-ai-coding-agents-pb2</guid>
      <description>&lt;h2&gt;
  
  
  The problem
&lt;/h2&gt;

&lt;p&gt;Every AI coding CLI is a snowflake: different flags, different session models, and all of them editing your one working copy. I wanted to run agents in parallel on isolated branches, queue prompts while an agent works, and have a real UI — without handing API keys to yet another app.&lt;/p&gt;

&lt;h2&gt;
  
  
  What AgentGrove is
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/arnabk/agentgrove" rel="noopener noreferrer"&gt;AgentGrove&lt;/a&gt; is an open-source (MIT) local developer workspace. It launches the agent CLIs already on your machine (Claude Code, opencode, Kimi), translates their event streams into one UI, and scopes every chat to a git worktree.&lt;/p&gt;

&lt;h2&gt;
  
  
  Feature tour
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Multi-provider agents&lt;/strong&gt; — Claude, opencode, Kimi; live model lists, session resume, per-chat model/effort settings&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Worktrees everywhere&lt;/strong&gt; — each chat can live in its own worktree; create/restore from the UI, pre-scripts for &lt;code&gt;pnpm install&lt;/code&gt; et al, celestial branch names with a galaxy map of where you've been&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Real chat UX&lt;/strong&gt; — streaming with coalescing, thinking blocks, tool activity rail, retry, forking, prompt-revert (undo the files a prompt touched)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Prompt queue&lt;/strong&gt; — messages queue while the agent works; auto-drain or manual mode&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Postgres DB editor&lt;/strong&gt; — saved connections with inline test, table browser with filters + pagination, SQL editor with schema autocomplete&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;The basics done right&lt;/strong&gt; — PTY terminal, CodeMirror editor with autosave, sub-10ms fuzzy file search over 100k files, notes scratchpad, team chat&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Rust + SolidJS&lt;/strong&gt; — single-binary backend, low memory footprint, hot-reload dev&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;

&lt;p&gt;No vendor SDKs. Each provider is a small subprocess adapter (~400 lines of Rust) that launches the CLI with its JSON stream flags and translates events into a common enum (&lt;code&gt;Token&lt;/code&gt;, &lt;code&gt;Thinking&lt;/code&gt;, &lt;code&gt;ToolCall&lt;/code&gt;, &lt;code&gt;ToolResult&lt;/code&gt;, &lt;code&gt;Done&lt;/code&gt;, &lt;code&gt;Error&lt;/code&gt;). Auth stays with your local CLI — the app never sees a key. Adding a provider means writing one translator and registering it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Testing
&lt;/h2&gt;

&lt;p&gt;Two layers keep this honest: a deterministic fake provider for dispatch/queue/resume e2e tests, and real-model Playwright runs against the actual CLIs. The demo videos on the README are recorded by Playwright in an isolated Docker stack (including a seeded Postgres for the DB editor demo), not staged screenshots.&lt;/p&gt;

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



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/arnabk/agentgrove.git
&lt;span class="nb"&gt;cd &lt;/span&gt;agentgrove &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; just dev
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Demo videos are on the &lt;a href="https://github.com/arnabk/agentgrove" rel="noopener noreferrer"&gt;README&lt;/a&gt;. Issues and PRs welcome — I'd love to hear which provider you want next.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>rust</category>
      <category>opensource</category>
      <category>devtools</category>
    </item>
  </channel>
</rss>
