<?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: nadavnaveh</title>
    <description>The latest articles on DEV Community by nadavnaveh (@nadavnaveh).</description>
    <link>https://dev.to/nadavnaveh</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%2F3833949%2F84da3c03-56ce-4599-b121-e074e804bb79.png</url>
      <title>DEV Community: nadavnaveh</title>
      <link>https://dev.to/nadavnaveh</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nadavnaveh"/>
    <language>en</language>
    <item>
      <title>Why AI Agent Orchestration Needs Its Own Language</title>
      <dc:creator>nadavnaveh</dc:creator>
      <pubDate>Thu, 19 Mar 2026 16:24:13 +0000</pubDate>
      <link>https://dev.to/nadavnaveh/why-ai-agent-orchestration-needs-its-own-language-4l7p</link>
      <guid>https://dev.to/nadavnaveh/why-ai-agent-orchestration-needs-its-own-language-4l7p</guid>
      <description>&lt;p&gt;Something has been bugging me about the AI agent space: there's no standard way to define a team of agents.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;Every platform has its own config format. Claude Code wants AGENT.md files with YAML frontmatter. Cursor wants &lt;code&gt;.mdc&lt;/code&gt; rules. OpenClaw wants &lt;code&gt;soul.md&lt;/code&gt; plus skill files plus channel configs plus gateway setup. Codex wants TOML. And so on.&lt;/p&gt;

&lt;p&gt;So if you build a 5-agent pipeline — say a code review system with an analyzer, security scanner, reviewer, reporter, and an approval gate — you end up with &lt;strong&gt;20+ config files&lt;/strong&gt; scattered across directories. No overview, no validation, no portability. Pure vibe coding.&lt;/p&gt;

&lt;p&gt;Then someone says "we need this in Cursor too" — and you rewrite the whole thing from scratch. Different format, different structure, same agents.&lt;/p&gt;

&lt;p&gt;This felt like the exact same problem infrastructure had before Terraform. Every cloud provider wanted different configs. No portability. No single source of truth.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;I built &lt;a href="https://github.com/agentopology/agentopology" rel="noopener noreferrer"&gt;AgenTopology&lt;/a&gt; — a declarative language specifically for multi-agent systems. You define agents, flows, quality gates, hooks, group chats, and MCP servers in one readable file. Then one command scaffolds it to whichever platform you use.&lt;/p&gt;

&lt;p&gt;Currently supports &lt;strong&gt;7 targets&lt;/strong&gt;: Claude Code, OpenClaw, Cursor, Codex, Gemini CLI, Copilot, and Kiro.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Part That Makes It Actually Usable
&lt;/h2&gt;

&lt;p&gt;It ships with a &lt;strong&gt;Claude Code skill&lt;/strong&gt;. You type &lt;code&gt;/agentopology&lt;/code&gt;, describe what you want — "give me a code review team with an analyzer, scanner, and reviewer" — and it builds the whole thing. No syntax to learn. No docs to read.&lt;/p&gt;

&lt;p&gt;Then you can &lt;strong&gt;visualize the entire topology&lt;/strong&gt; as an interactive graph. Click any node and see all its tools, connections, MCP servers, hooks, and config. This is what a code review pipeline looks like in the visualizer:&lt;/p&gt;

&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%2Ful1zui92xyrlecc3opjd.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%2Ful1zui92xyrlecc3opjd.png" alt="AgenTopology Visualizer" width="800" height="402"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Every agent, every connection, every gate — visible in one view.&lt;/p&gt;

&lt;h2&gt;
  
  
  How It Works
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Describe your team&lt;/strong&gt; (via skill or write an &lt;code&gt;.at&lt;/code&gt; file)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Validate&lt;/strong&gt; — 29 built-in rules catch errors before you deploy&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Visualize&lt;/strong&gt; — interactive graph of the full architecture&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scaffold&lt;/strong&gt; — one command generates all platform configs&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Want to switch from Claude Code to OpenClaw? Change &lt;code&gt;--target claude-code&lt;/code&gt; to &lt;code&gt;--target openclaw&lt;/code&gt;. Same team, zero rewrite.&lt;/p&gt;

&lt;p&gt;Want to add a hook? Tell the skill "add a hook that formats code after every write." Want to add a gate? "Add a quality gate between builder and reviewer." The skill handles the syntax.&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;npm &lt;span class="nb"&gt;install&lt;/span&gt; &lt;span class="nt"&gt;-g&lt;/span&gt; agentopology
&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 shell"&gt;&lt;code&gt;&lt;span class="nb"&gt;ln&lt;/span&gt; &lt;span class="nt"&gt;-s&lt;/span&gt; &lt;span class="si"&gt;$(&lt;/span&gt;npm root &lt;span class="nt"&gt;-g&lt;/span&gt;&lt;span class="si"&gt;)&lt;/span&gt;/agentopology/skill .claude/skills/agentopology
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Type &lt;code&gt;/agentopology&lt;/code&gt; and describe your team.&lt;/p&gt;

&lt;p&gt;Open source, Apache 2.0: &lt;a href="https://github.com/agentopology/agentopology" rel="noopener noreferrer"&gt;github.com/agentopology/agentopology&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Website: &lt;a href="https://agentopology.com" rel="noopener noreferrer"&gt;agentopology.com&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;I'm curious — is a declarative approach the right direction for multi-agent orchestration? Or is it too early to standardize? Would love to hear what problems you've run into building agent teams.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>opensource</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
