<?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: volition79</title>
    <description>The latest articles on DEV Community by volition79 (@volition79).</description>
    <link>https://dev.to/volition79</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%2F3886824%2F203b59dc-93d4-491a-98af-7f4e89710b2b.png</url>
      <title>DEV Community: volition79</title>
      <link>https://dev.to/volition79</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/volition79"/>
    <language>en</language>
    <item>
      <title>A Local-First Multi-Agent Dashboard for Codex CLI and Claude Code</title>
      <dc:creator>volition79</dc:creator>
      <pubDate>Sun, 19 Apr 2026 12:37:18 +0000</pubDate>
      <link>https://dev.to/volition79/a-local-first-multi-agent-dashboard-for-codex-cli-and-claude-code-3a2j</link>
      <guid>https://dev.to/volition79/a-local-first-multi-agent-dashboard-for-codex-cli-and-claude-code-3a2j</guid>
      <description>&lt;p&gt;If you use &lt;strong&gt;Codex CLI&lt;/strong&gt; or &lt;strong&gt;Claude Code&lt;/strong&gt; for real work, you’ve probably run into the same problem I did: once a task gets bigger, it becomes hard to see the overall plan, review it before execution, and&lt;br&gt;
  keep track of what each sub-agent is doing.&lt;/p&gt;

&lt;p&gt;That is why I built &lt;strong&gt;Sonol Multi Agent&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;It is a local-first multi-agent setup that turns a single request into a structured plan, lets you review and approve that plan in a UI dashboard, and then shows the sub-agent flow and runtime progress while&lt;br&gt;
  the work is happening.&lt;/p&gt;

&lt;p&gt;This project is for people who want a more visible and controllable multi-agent workflow without handing the source of truth over to a browser tab or a remote web app.&lt;/p&gt;

&lt;p&gt;Project link: &lt;a href="https://github.com/volition79/sonol-multi-agent" rel="noopener noreferrer"&gt;https://github.com/volition79/sonol-multi-agent&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;## What you get&lt;/p&gt;

&lt;p&gt;With Sonol Multi Agent, you can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;turn one request into a structured multi-agent plan&lt;/li&gt;
&lt;li&gt;review and approve that plan in a dashboard before execution&lt;/li&gt;
&lt;li&gt;monitor sub-agent flow and runtime progress&lt;/li&gt;
&lt;li&gt;keep orchestration state local instead of making the browser the authority&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal is not just to make multi-agent workflows possible. It is to make them easier to follow, easier to trust, and easier to recover when something goes wrong.&lt;/p&gt;

&lt;p&gt;## How it is set up&lt;/p&gt;

&lt;p&gt;The system is split into two skills, and both need to be installed together:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;sonol-multi-agent&lt;/strong&gt;&lt;br&gt;
 This handles planning, proposal flow, approval flow, and orchestration.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;sonol-agent-runtime&lt;/strong&gt;&lt;br&gt;
 This handles runtime reporting, bridge-connected dashboard updates, and shared execution state.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;If you install the repo and follow the README, you can use the two skills together as one workflow.&lt;/p&gt;

&lt;p&gt;## Why I built it this way&lt;/p&gt;

&lt;p&gt;A lot of multi-agent systems are cloud-first.&lt;/p&gt;

&lt;p&gt;The planner owns the state, the dashboard owns the state, and after a while the browser session starts to feel more important than the machine actually doing the work.&lt;/p&gt;

&lt;p&gt;I wanted the opposite.&lt;/p&gt;

&lt;p&gt;In this setup:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the local AI session creates the first creative draft&lt;/li&gt;
&lt;li&gt;a hosted planner only normalizes and binds that draft&lt;/li&gt;
&lt;li&gt;the local SQLite database remains authoritative&lt;/li&gt;
&lt;li&gt;the local bridge remains authoritative for dashboard and runtime access&lt;/li&gt;
&lt;li&gt;the remote dashboard stays a thin UI layer&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That boundary matters a lot to me. I did not want browser storage or a remote dashboard to quietly become the real source of truth.&lt;/p&gt;

&lt;p&gt;## Why local-first matters in practice&lt;/p&gt;

&lt;p&gt;This is not just a philosophy choice.&lt;/p&gt;

&lt;p&gt;It affects how the system behaves when something is messy in the real world.&lt;/p&gt;

&lt;p&gt;When orchestration state stays local, it is easier to understand:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;what the current plan actually is&lt;/li&gt;
&lt;li&gt;whether approval really happened&lt;/li&gt;
&lt;li&gt;which run is active&lt;/li&gt;
&lt;li&gt;what events were emitted&lt;/li&gt;
&lt;li&gt;what the local runtime believes right now&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That makes debugging, recovery, and trust much better than when state is scattered across a browser session and remote services.&lt;/p&gt;

&lt;p&gt;## Tested environments&lt;/p&gt;

&lt;p&gt;So far, I have tested this setup in these environments:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Codex CLI&lt;/strong&gt; on &lt;strong&gt;Windows WSL&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Claude Code&lt;/strong&gt; on &lt;strong&gt;Windows&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I also recently tested &lt;strong&gt;Claude Code on macOS&lt;/strong&gt;. The first run hit an environment-specific issue, but once the exact terminal error text was shared, the problem was fixed and the workflow behaved normally&lt;br&gt;
  afterward.&lt;/p&gt;

&lt;p&gt;That process also helped tighten some of the practical parts of the system, including path handling, runtime behavior, and recovery.&lt;/p&gt;

&lt;p&gt;## If you want to try it&lt;/p&gt;

&lt;p&gt;If this sounds useful, I’d encourage you to download the repo, install both skills, and try it on a real task.&lt;/p&gt;

&lt;p&gt;If you do, I’d especially like feedback on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the installation flow&lt;/li&gt;
&lt;li&gt;the approval and dashboard experience&lt;/li&gt;
&lt;li&gt;local-first orchestration tradeoffs&lt;/li&gt;
&lt;li&gt;failure recovery during multi-agent runs&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That kind of feedback is much more useful than a demo-only reaction, because the whole point of this project is to make multi-agent workflows usable in actual developer environments.&lt;/p&gt;

&lt;p&gt;Repo: [&lt;a href="https://github.com/volition79/sonol-multi-agent" rel="noopener noreferrer"&gt;https://github.com/volition79/sonol-multi-agent&lt;/a&gt;]&lt;/p&gt;

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