<?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: dataqbs</title>
    <description>The latest articles on DEV Community by dataqbs (@carloscape).</description>
    <link>https://dev.to/carloscape</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%2F3960586%2Fc542778b-27e1-4951-aa70-2d909b0df918.jpeg</url>
      <title>DEV Community: dataqbs</title>
      <link>https://dev.to/carloscape</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/carloscape"/>
    <language>en</language>
    <item>
      <title>Octorato: an open-source AI agent OS with built-in per-client FinOps</title>
      <dc:creator>dataqbs</dc:creator>
      <pubDate>Sun, 31 May 2026 00:42:23 +0000</pubDate>
      <link>https://dev.to/carloscape/octorato-an-open-source-ai-agent-os-with-built-in-per-client-finops-1b3i</link>
      <guid>https://dev.to/carloscape/octorato-an-open-source-ai-agent-os-with-built-in-per-client-finops-1b3i</guid>
      <description>&lt;p&gt;Most agent frameworks assume one agent, one app, one bill. The moment you run agents for &lt;em&gt;many&lt;/em&gt; clients, two problems appear that no runtime solves for you: &lt;strong&gt;you can't prove which client burned which tokens&lt;/strong&gt;, and &lt;strong&gt;nothing stops one client's workspace from leaking into another's&lt;/strong&gt;. I built Octorato to fix exactly that.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Octorato is
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Octorato is an open-source AI agent operating system: one file-native "brain" — rules, 190+ skills, 180+ specialist agents, all plain markdown under git — that a single operator runs across many sealed client "arms," with per-client token attribution and opt-in budget caps.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;It's not a runtime you import. It's the agent's &lt;em&gt;self&lt;/em&gt; as files you can read, diff, fork, and own — runtime-agnostic (it runs on Claude Code today).&lt;/p&gt;

&lt;h2&gt;
  
  
  The octopus model
&lt;/h2&gt;

&lt;p&gt;One &lt;strong&gt;brain&lt;/strong&gt;, many &lt;strong&gt;arms&lt;/strong&gt;. The brain holds the shared self: rules (the constitution), skills (HOW to do things), agents (WHO does them). Each arm is a sealed deployment serving exactly one client. Knowledge flows &lt;em&gt;down&lt;/em&gt; (generic skills cascade to every arm) and lessons flow &lt;em&gt;up&lt;/em&gt; (anonymized patterns get distilled back into the brain). Like a real octopus, most of the neurons live in the arms, not the head.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why "file-native" matters
&lt;/h2&gt;

&lt;p&gt;Your agent's identity, skills, and memory normally live trapped inside vendor code and a cloud console — you can't read the whole self, diff a change, or move it. Octorato keeps all of it as plain markdown under version control. Identity becomes &lt;strong&gt;diffable, reviewable, portable, and ownable&lt;/strong&gt;. Text outlives runtimes.&lt;/p&gt;

&lt;h2&gt;
  
  
  The part nobody else does: FinOps and isolation are the same wall
&lt;/h2&gt;

&lt;p&gt;Because each arm is a sealed cell that no other arm can see, every token an arm spends is &lt;em&gt;attributable&lt;/em&gt; to exactly one client by construction. Cellular isolation &lt;strong&gt;is&lt;/strong&gt; per-client FinOps — the wall that seals a client is the wall that meters it. Concretely: per-arm USD rollup (estimated from local session logs at list price), cost-spike alerts, and an &lt;strong&gt;opt-in&lt;/strong&gt; &lt;code&gt;PreToolUse&lt;/code&gt; budget gate — wire the hook and set a client's cap in &lt;code&gt;budgets.yaml&lt;/code&gt;, and it refuses the tool call (exits non-zero) once the cap is hit.&lt;/p&gt;

&lt;p&gt;Gartner predicts &lt;a href="https://www.gartner.com/en/newsroom/press-releases/2025-06-25-gartner-predicts-over-40-percent-of-agentic-ai-projects-will-be-canceled-by-end-of-2027" rel="noopener noreferrer"&gt;over 40% of agentic AI projects will be cancelled by 2027&lt;/a&gt; over unmanaged cost. The boring discipline — attribute every token, cap every client — is what keeps you on the right side of that statistic.&lt;/p&gt;

&lt;h2&gt;
  
  
  How it compares (honestly)
&lt;/h2&gt;

&lt;p&gt;CrewAI, LangGraph, and AutoGen are excellent &lt;strong&gt;Python agent-runtime frameworks&lt;/strong&gt;: you define agents and graphs in code and they execute in-process. They have far larger communities. Octorato lives at a different layer — the self as files — and its defensible difference is &lt;strong&gt;multi-tenant arm isolation plus built-in FinOps&lt;/strong&gt;, which runtime frameworks don't target. If you're building one app, use a runtime framework. If you're an operator or agency serving many clients from one brain, that's the gap Octorato fills.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try it
&lt;/h2&gt;

&lt;p&gt;It's MIT-licensed and public: &lt;a href="https://github.com/CarlosCaPe/octorato" rel="noopener noreferrer"&gt;https://github.com/CarlosCaPe/octorato&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Read the &lt;a href="https://github.com/CarlosCaPe/octorato/blob/master/WHITEPAPER.md" rel="noopener noreferrer"&gt;white paper&lt;/a&gt; for the full model, or the &lt;a href="https://github.com/CarlosCaPe/octorato/blob/master/FAQ.md" rel="noopener noreferrer"&gt;FAQ&lt;/a&gt; for the short version. Contributions welcome — every contributor is credited.&lt;/p&gt;

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