<?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: Don Hardman</title>
    <description>The latest articles on DEV Community by Don Hardman (@donhardman).</description>
    <link>https://dev.to/donhardman</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%2F3933914%2F1059b99c-b945-4bf9-9f0e-3f115176f55f.jpeg</url>
      <title>DEV Community: Don Hardman</title>
      <link>https://dev.to/donhardman</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/donhardman"/>
    <language>en</language>
    <item>
      <title>Introducing Octomind: an Open-Source AI Agent Runtime in Rust</title>
      <dc:creator>Don Hardman</dc:creator>
      <pubDate>Fri, 15 May 2026 21:13:41 +0000</pubDate>
      <link>https://dev.to/donhardman/introducing-octomind-an-open-source-ai-agent-runtime-in-rust-3ed6</link>
      <guid>https://dev.to/donhardman/introducing-octomind-an-open-source-ai-agent-runtime-in-rust-3ed6</guid>
      <description>&lt;h2&gt;
  
  
  Install agents, not frameworks.
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://octomind.run" rel="noopener noreferrer"&gt;Octomind&lt;/a&gt; is an open-source AI agent runtime written in Rust. One binary. 48+ pre-configured specialists. Real MCP host. No framework lock-in. Apache 2.0.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://octomind.run/install.sh | sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Why we built it
&lt;/h3&gt;

&lt;p&gt;After a year of shipping AI-native developer tools at &lt;a href="https://muvon.io" rel="noopener noreferrer"&gt;Muvon&lt;/a&gt;, we kept hitting the same walls with existing agent stacks:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Framework lock-in.&lt;/strong&gt; Pick LangChain, you marry Python and a graph DSL. Pick Autogen, you marry Microsoft's mental model. Pick an SDK-only path, you re-invent everything that should be infrastructure.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Brittle long sessions.&lt;/strong&gt; Most agents fall off a cliff once the context window saturates. Real engineering tasks take hours.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Single-vendor lock-in.&lt;/strong&gt; "Just use Claude" is fine until the API has a bad day, your bill triples, or a model is deprecated.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;MCP as an afterthought.&lt;/strong&gt; Servers added at startup, not runtime. No real host primitive.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Octomind is the runtime we wanted to use. Rust because we wanted atomic writes, type safety on the critical path, and one binary that ships without a Python venv.&lt;/p&gt;

&lt;h3&gt;
  
  
  What you get
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;48+ specialist agents across 12 domains&lt;/strong&gt; — engineer, DevOps, security, lawyer, doctor, finance researcher, etc. Each is a YAML manifest, not a class hierarchy. You can write your own in 20 lines.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;MCP host with dynamic registration.&lt;/strong&gt; Add or remove MCP servers at runtime, not just at startup. This unlocks workflows where one agent installs the tools the next agent will use.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multi-provider, zero lock-in.&lt;/strong&gt; 13+ providers out of the box: OpenAI, Anthropic, Google, OpenRouter, Mistral, Ollama, vLLM, plus anything that speaks the OpenAI API. Switch with one config line.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Adaptive compression for 4+ hour sessions.&lt;/strong&gt; A compression scheduler that watches the token budget and rewrites earlier turns into structured summaries before they fall out of context. Sessions that used to die at hour two now run overnight.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Hard spending caps.&lt;/strong&gt; Per-session and per-request budgets that the runtime enforces, not a comment in your README.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  A quick taste
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Run the engineer specialist on a fix&lt;/span&gt;
octomind run engineer &lt;span class="s2"&gt;"find the cause of the flaky e2e test in checkout"&lt;/span&gt;

&lt;span class="c"&gt;# Mount an MCP server at runtime — no restart&lt;/span&gt;
octomind mcp add github &lt;span class="nt"&gt;--token&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="nv"&gt;$GITHUB_TOKEN&lt;/span&gt;

&lt;span class="c"&gt;# Swap the model on the next turn&lt;/span&gt;
octomind run engineer &lt;span class="nt"&gt;--model&lt;/span&gt; anthropic/claude-sonnet-4-6 &lt;span class="s2"&gt;"now propose the patch"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  How it compares
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;/th&gt;
&lt;th&gt;Octomind&lt;/th&gt;
&lt;th&gt;Aider&lt;/th&gt;
&lt;th&gt;Claude Code&lt;/th&gt;
&lt;th&gt;Codex CLI&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Open source&lt;/td&gt;
&lt;td&gt;✅ Apache 2.0&lt;/td&gt;
&lt;td&gt;✅ Apache 2.0&lt;/td&gt;
&lt;td&gt;❌&lt;/td&gt;
&lt;td&gt;❌&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Language&lt;/td&gt;
&lt;td&gt;Rust&lt;/td&gt;
&lt;td&gt;Python&lt;/td&gt;
&lt;td&gt;TypeScript&lt;/td&gt;
&lt;td&gt;TypeScript&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Provider lock-in&lt;/td&gt;
&lt;td&gt;None (13+)&lt;/td&gt;
&lt;td&gt;None&lt;/td&gt;
&lt;td&gt;Anthropic only&lt;/td&gt;
&lt;td&gt;OpenAI only&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;MCP host&lt;/td&gt;
&lt;td&gt;✅ dynamic&lt;/td&gt;
&lt;td&gt;partial&lt;/td&gt;
&lt;td&gt;✅ static&lt;/td&gt;
&lt;td&gt;✅ static&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Specialist agents&lt;/td&gt;
&lt;td&gt;48+ built-in&lt;/td&gt;
&lt;td&gt;DIY&lt;/td&gt;
&lt;td&gt;skills/subagents&lt;/td&gt;
&lt;td&gt;DIY&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Long-session compression&lt;/td&gt;
&lt;td&gt;✅ adaptive&lt;/td&gt;
&lt;td&gt;basic&lt;/td&gt;
&lt;td&gt;rolling&lt;/td&gt;
&lt;td&gt;rolling&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h3&gt;
  
  
  Try it
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Docs:&lt;/strong&gt; &lt;a href="https://octomind.run/docs" rel="noopener noreferrer"&gt;octomind.run/docs&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Repo:&lt;/strong&gt; &lt;a href="https://github.com/muvon/octomind" rel="noopener noreferrer"&gt;github.com/muvon/octomind&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Specialists catalog:&lt;/strong&gt; &lt;a href="https://octomind.run/tap" rel="noopener noreferrer"&gt;octomind.run/tap&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We'd love your feedback — issues, PRs, or just star the repo if you want to follow along. The roadmap, the docs, and every commit are in the open.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Octomind is built by &lt;a href="https://muvon.io" rel="noopener noreferrer"&gt;Muvon Un Limited&lt;/a&gt;, the team behind &lt;a href="https://github.com/muvon/octocode" rel="noopener noreferrer"&gt;Octocode&lt;/a&gt; (Rust semantic code indexer with GraphRAG) and &lt;a href="https://github.com/muvon/octobrain" rel="noopener noreferrer"&gt;Octobrain&lt;/a&gt; (persistent agent memory). We build infrastructure for AI-native developers.&lt;/em&gt;&lt;/p&gt;

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