<?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: lodar</title>
    <description>The latest articles on DEV Community by lodar (@lodar).</description>
    <link>https://dev.to/lodar</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%2F3996958%2F0177beaf-75bc-4611-976c-ae6c46966712.jpg</url>
      <title>DEV Community: lodar</title>
      <link>https://dev.to/lodar</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/lodar"/>
    <language>en</language>
    <item>
      <title>linux is perfect for ai agents</title>
      <dc:creator>lodar</dc:creator>
      <pubDate>Mon, 22 Jun 2026 12:47:50 +0000</pubDate>
      <link>https://dev.to/lodar/linux-is-perfect-for-ai-agents-2fgp</link>
      <guid>https://dev.to/lodar/linux-is-perfect-for-ai-agents-2fgp</guid>
      <description>&lt;p&gt;agents need three things: supervision, isolation, and a way to talk to each other. your linux box already ships all three.&lt;/p&gt;

&lt;p&gt;so each agent is a linux user running an agentic cli (claude code, codex, whatever) as a systemd service. supervision is systemd: &lt;code&gt;Restart=on-failure&lt;/code&gt;, for free. isolation is unix users + cgroups. i didn't build a sandbox, i created users. each user is an agent. logs are journald. coordination is one bash cli they all call, the same binary i call. &lt;code&gt;5dive agent ask coder "is the auth refactor safe to merge?"&lt;/code&gt; blocks until the coder agent answers. bigger handoffs go through a shared queue backed by a single sqlite file.&lt;/p&gt;

&lt;p&gt;no broker, no daemon, no bespoke protocol. linux shipped all of it years ago.&lt;/p&gt;

&lt;p&gt;going multi-box needed nothing new. i didn't add a transport, i added ssh. &lt;code&gt;5dive fleet send coder@box2 "ship it"&lt;/code&gt; just runs &lt;code&gt;ssh box2 '5dive agent send coder …'&lt;/code&gt;. each box is a peer running the same cli. no broker, no message bus. the only real limit is delivery guarantees: no retries, no exactly-once. need those and you're building a queue. a team of agents doesn't.&lt;/p&gt;

&lt;p&gt;mit: &lt;a href="https://github.com/5dive-ai/5dive" rel="noopener noreferrer"&gt;github.com/5dive-ai/5dive&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;supervision, isolation, ipc: linux solved all three decades ago, and hardened them in production longer than any agent framework has existed. the best runtime for a team of agents isn't something you install. it's the box you already own.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>devops</category>
      <category>opensource</category>
      <category>linux</category>
    </item>
  </channel>
</rss>
