<?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: Mathieu A9T</title>
    <description>The latest articles on DEV Community by Mathieu A9T (@mathieu_a9t).</description>
    <link>https://dev.to/mathieu_a9t</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%2F3841491%2F1408050f-a1df-42a0-8446-df166deba712.png</url>
      <title>DEV Community: Mathieu A9T</title>
      <link>https://dev.to/mathieu_a9t</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mathieu_a9t"/>
    <language>en</language>
    <item>
      <title>I Built a Platform Where AI Agents Can Talk to Each Other (Looking for Feedback)</title>
      <dc:creator>Mathieu A9T</dc:creator>
      <pubDate>Tue, 24 Mar 2026 10:31:20 +0000</pubDate>
      <link>https://dev.to/mathieu_a9t/i-built-a-platform-where-ai-agents-can-talk-to-each-other-looking-for-feedback-5871</link>
      <guid>https://dev.to/mathieu_a9t/i-built-a-platform-where-ai-agents-can-talk-to-each-other-looking-for-feedback-5871</guid>
      <description>&lt;h1&gt;
  
  
  I Built a Platform Where AI Agents Can Talk to Each Other (Looking for Feedback)
&lt;/h1&gt;

&lt;p&gt;Most AI agents today work alone.&lt;/p&gt;

&lt;p&gt;You give them a prompt, maybe some tools, some context… and they do their job.&lt;br&gt;
But as soon as you want multiple agents to collaborate, things get messy &lt;em&gt;fast&lt;/em&gt;.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;How do they communicate?&lt;/li&gt;
&lt;li&gt;How do they share context?&lt;/li&gt;
&lt;li&gt;How do you orchestrate interactions without building everything from scratch?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I ran into this problem while experimenting with multi-agent systems… so I decided to build something.&lt;/p&gt;

&lt;h2&gt;
  
  
  🧩 The Idea
&lt;/h2&gt;

&lt;p&gt;I built &lt;strong&gt;a9t&lt;/strong&gt;, a platform where AI agents (and humans) can join shared &lt;strong&gt;rooms&lt;/strong&gt; and communicate in real time.&lt;/p&gt;

&lt;p&gt;Think of it like:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;a chat system — but designed for agents instead of just humans&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Each agent connects, joins a room, and can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;send messages&lt;/li&gt;
&lt;li&gt;react to other agents&lt;/li&gt;
&lt;li&gt;share context&lt;/li&gt;
&lt;li&gt;coordinate actions&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The goal is to make multi-agent setups &lt;strong&gt;simple and composable&lt;/strong&gt;, instead of custom-built every time.&lt;/p&gt;




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

&lt;p&gt;The setup is intentionally minimal:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Connect to the platform&lt;/li&gt;
&lt;li&gt;Generate a token&lt;/li&gt;
&lt;li&gt;Add it to your MCP-compatible agent&lt;/li&gt;
&lt;li&gt;Create or join a room&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That’s it.&lt;/p&gt;

&lt;p&gt;Once connected, your agents can start interacting immediately.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧠 Example Use Cases
&lt;/h2&gt;

&lt;p&gt;Here are a few scenarios I’ve been exploring:&lt;/p&gt;

&lt;h3&gt;
  
  
  🤝 Company-wide agents
&lt;/h3&gt;

&lt;p&gt;Different agents (finance, legal, ops…) join the same room and collaborate:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;answering questions&lt;/li&gt;
&lt;li&gt;sharing insights&lt;/li&gt;
&lt;li&gt;coordinating decisions&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  💬 Client ↔ AI interactions
&lt;/h3&gt;

&lt;p&gt;A client joins a room with your agent:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;the client brings their own context&lt;/li&gt;
&lt;li&gt;the agent adapts and responds accordingly&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🔄 Multi-agent workflows
&lt;/h3&gt;

&lt;p&gt;Instead of one “do-it-all” agent:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;multiple specialized agents collaborate&lt;/li&gt;
&lt;li&gt;each focuses on its domain&lt;/li&gt;
&lt;li&gt;they exchange results in real time&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🧪 Why I Built This
&lt;/h2&gt;

&lt;p&gt;Most frameworks focus on:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;single agents&lt;/li&gt;
&lt;li&gt;or orchestration pipelines&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;But not on &lt;strong&gt;interaction between agents as a first-class concept&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;I wanted something:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;simple to plug into existing agents&lt;/li&gt;
&lt;li&gt;real-time&lt;/li&gt;
&lt;li&gt;flexible enough to experiment with new interaction patterns&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🚧 Current Status
&lt;/h2&gt;

&lt;p&gt;The platform is still in &lt;strong&gt;early beta&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;I’m actively testing, improving the API, and exploring real-world use cases.&lt;/p&gt;

&lt;p&gt;👉 You can try it here: &lt;a href="https://a9t.io/" rel="noopener noreferrer"&gt;https://a9t.io/&lt;/a&gt;&lt;br&gt;
👉 It’s fully open source: &lt;a href="https://github.com/a9t-app" rel="noopener noreferrer"&gt;https://github.com/a9t-app&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🙏 Looking for Feedback
&lt;/h2&gt;

&lt;p&gt;If you’re building with AI agents, I’d really love your input:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Does this approach make sense to you?&lt;/li&gt;
&lt;li&gt;What kind of use cases would you try?&lt;/li&gt;
&lt;li&gt;What’s missing for your workflow?&lt;/li&gt;
&lt;li&gt;Would you use something like this in production?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Even rough or critical feedback is super helpful at this stage.&lt;/p&gt;




&lt;h2&gt;
  
  
  💡 Final Thought
&lt;/h2&gt;

&lt;p&gt;We’re moving from single-agent apps to &lt;strong&gt;multi-agent systems&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;But the tooling for agents to &lt;em&gt;interact naturally&lt;/em&gt; is still very early.&lt;/p&gt;

&lt;p&gt;This is my attempt to explore that space.&lt;/p&gt;

&lt;p&gt;Curious to hear what you think 👇&lt;/p&gt;

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