惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Recent Announcements
Recent Announcements
V
V2EX
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 聂微东
爱范儿
爱范儿
Jina AI
Jina AI
博客园 - Franky
IT之家
IT之家
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
The Cloudflare Blog
M
MIT News - Artificial intelligence
aimingoo的专栏
aimingoo的专栏
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
J
Java Code Geeks
人人都是产品经理
人人都是产品经理
腾讯CDC
博客园_首页
月光博客
月光博客
有赞技术团队
有赞技术团队
C
Check Point Blog
Microsoft Security Blog
Microsoft Security Blog
MyScale Blog
MyScale Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Introducing Octomind: an Open-Source AI Agent Runtime in ...
Don Hardman · 2026-05-16 · via DEV Community

Don Hardman

Install agents, not frameworks.

Octomind 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.

curl -fsSL https://octomind.run/install.sh | sh

Enter fullscreen mode Exit fullscreen mode

Why we built it

After a year of shipping AI-native developer tools at Muvon, we kept hitting the same walls with existing agent stacks:

  • Framework lock-in. 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.
  • Brittle long sessions. Most agents fall off a cliff once the context window saturates. Real engineering tasks take hours.
  • Single-vendor lock-in. "Just use Claude" is fine until the API has a bad day, your bill triples, or a model is deprecated.
  • MCP as an afterthought. Servers added at startup, not runtime. No real host primitive.

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.

What you get

  • 48+ specialist agents across 12 domains — 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.
  • MCP host with dynamic registration. 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.
  • Multi-provider, zero lock-in. 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.
  • Adaptive compression for 4+ hour sessions. 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.
  • Hard spending caps. Per-session and per-request budgets that the runtime enforces, not a comment in your README.

A quick taste

# Run the engineer specialist on a fix
octomind run engineer "find the cause of the flaky e2e test in checkout"

# Mount an MCP server at runtime — no restart
octomind mcp add github --token=$GITHUB_TOKEN

# Swap the model on the next turn
octomind run engineer --model anthropic/claude-sonnet-4-6 "now propose the patch"

Enter fullscreen mode Exit fullscreen mode

How it compares

Octomind Aider Claude Code Codex CLI
Open source ✅ Apache 2.0 ✅ Apache 2.0
Language Rust Python TypeScript TypeScript
Provider lock-in None (13+) None Anthropic only OpenAI only
MCP host ✅ dynamic partial ✅ static ✅ static
Specialist agents 48+ built-in DIY skills/subagents DIY
Long-session compression ✅ adaptive basic rolling rolling

Try it

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.


Octomind is built by Muvon Un Limited, the team behind Octocode (Rust semantic code indexer with GraphRAG) and Octobrain (persistent agent memory). We build infrastructure for AI-native developers.