cd /news/ai-agents/show-hn-mitos-n-way-live-copy-on-wri… · home topics ai-agents article
[ARTICLE · art-34973] src=github.com ↗ pub= topic=ai-agents verified=true sentiment=↑ positive

Show HN: Mitos – N-way live copy-on-write fork of running Firecracker microVMs

Mitos, an open-source runtime for AI agents on Kubernetes, launches with N-way live copy-on-write fork of Firecracker microVMs, achieving warm-claim activation in tens of milliseconds. The tool provides isolated, forkable sandboxes that restore from memory snapshots, enabling parallel agent attempts with durable workspaces. Mitos is self-hostable on any Kubernetes cluster with KVM nodes or available as a managed service.

read14 min views1 publishedJun 20, 2026
Show HN: Mitos – N-way live copy-on-write fork of running Firecracker microVMs
Image: source

Millisecond microVM sandbox forking for AI agents on Kubernetes.

Isolated, forkable computers for your agents: Firecracker microVMs that restore from memory snapshots in milliseconds, fork into parallel attempts, and persist durable workspaces.

Documentation . Quickstart . Architecture . Comparison . Contributing

Agent harnesses need fast, isolated environments where agents can read and write files, install packages, and run untrusted code. Every existing option forces a trade you should not have to make: speed without ownership, isolation without forking, Kubernetes-nativeness without warm starts, or durability as someone else's proprietary cloud.

mitos

is, as far as we know, the only open-source, self-hostable, Kubernetes-native runtime whose engine does N-way live copy-on-write fork of a running microVM, and it does so with a warm-claim activate in the tens-of-ms class: P50 ~27 ms on the bare-metal reference node, reproducible from bench/husk-activate-latency.sh. You drive the whole lifecycle through declarative CRDs (

mitos.run

) on your own cluster, or fully hosted by us.Two ways to run it:

Self-hosted: any Kubernetes cluster with KVM nodes. Your data never leaves your infrastructure. Bare metal (Hetzner + Talos is the reference platform) is a first-class target.Hosted: a managed service operated by us, same engine and same API, for teams that want milliseconds without managing nodes.

Live N-way CoW fork runs on the husk pod-native default: the source husk pod snapshots its running VM and N child husk pods restore it via CoW, each an independent Ready child, verified on a real KVM cluster. The raw-forkd engine path, where forkd's in-process engine owns the running VM, also forks. Warm-claim activate, blocking exec,

run_code

fail-closed, self-heal, autoscale, live fork, and durable forkable workspaces are all verified on the husk default on a real KVM cluster.

from mitos import AgentRun

c = AgentRun()                                   # kubeconfig or in-cluster; autodetected

sb = c.sandbox("python", ready=True)             # claims a warm sandbox, waits Ready
result = sb.exec("python -c 'import numpy as np; print(np.mean([1,2,3,4,5]))'")
print(result.stdout)                             # 3.0

fork_a, fork_b = sb.fork(2)
fork_a.exec("python -c \"open('/workspace/plan_a.txt','w').write('conservative')\"")
fork_b.exec("python -c \"open('/workspace/plan_b.txt','w').write('aggressive')\"")

sb.terminate()

c.sandbox("python")

lazily creates a default pool mitos-default-python

(a SandboxTemplate plus a SandboxPool) if you have none; pass pool="my-pool"

to use an existing pool, which never creates anything. Errors raise AgentRunError(code, cause, remediation)

.

The async client (AsyncAgentRun

) mirrors the hot paths and adds create_pty()

for an interactive terminal over WebSocket.

import { AgentRun } from "@mitos/sdk";

const run = new AgentRun();                       // direct or cluster mode

const sb = await run.sandbox("python", { ready: true });
const result = await sb.exec("python -c 'print(40 + 2)'");
console.log(result.stdout);                        // 42

const reconnected = await run.fromName(sb.name);   // durable reconnect handle
await sb.terminate();

The TypeScript SDK (@mitos/sdk

) exposes the same one-liner sandbox(image)

, fromName

reconnect, streaming exec, and a server-envelope-aware AgentRunError

. Parity table in sdk/typescript/README.md.

go build -o mitos ./cmd/mitos/

mitos sandbox create --pool dev-default
mitos run echo hello --pool dev-default
mitos sandbox ls

mitos dev up

brings up a one-command local control plane on a mock engine. An MCP server (mitos-mcp

) exposes sandboxes as MCP tools so any MCP-speaking agent can use them with zero SDK integration. See docs/cli.md and docs/mcp.md.

sb.exec("pip install rich", on_stdout=lambda b: print(b.decode(), end=""))

ex = sb.run_code("import pandas as pd; df = pd.DataFrame({'x':[1,2,3]}); df.describe()")
print(ex.text)            # the REPL's last value, rendered
for r in ex.results:      # rich multi-MIME display artifacts (tables, images, ...)
    print(r.mime)

sb.exec_background("python train.py > /workspace/train.log 2>&1")

Streaming exec (/v1/exec/stream

) and the interactive PTY (/v1/pty

) require the raw-forkd path or a husk template snapshot rebuilt with the current guest agent: the agent baked into today's husk template snapshot predates the vsock streaming/PTY frame protocol, so on the husk default the stream and the PTY WebSocket close early. Blocking exec (/v1/exec

) is unaffected and works on the husk default. The husk template guest-agent rebuild is a tracked follow-up (#24).

kubectl apply -k deploy/

The self-contained kustomize base installs the CRDs, the controller in the default husk mode, the forkd builder DaemonSet, the /dev/kvm

device plugin, and the PKI bootstrap, and applies on a real KVM node with no manual patches. Nodes need /dev/kvm

and the label mitos.run/kvm=true

; the controller discovers forkd pods automatically. A Helm chart is planned (#37).

apiVersion: mitos.run/v1alpha1
kind: SandboxTemplate
metadata:
  name: python-agent
spec:
  image: python:3.12-slim
  init:
    - "pip install numpy pandas requests"
  resources:
    cpu: "1"
    memory: "512Mi"
  volumes:
    - name: workspace
      size: 5Gi
      forkPolicy: Snapshot
---
apiVersion: mitos.run/v1alpha1
kind: SandboxPool
metadata:
  name: python-agent-pool
spec:
  templateRef:
    name: python-agent
  replicas: 10
---
apiVersion: mitos.run/v1alpha1
kind: SandboxClaim
metadata:
  name: agent-session-1
spec:
  poolRef:
    name: python-agent-pool
  secrets:
    - name: anthropic-key
      secretRef:
        name: agent-secrets
        key: ANTHROPIC_API_KEY
---
apiVersion: mitos.run/v1alpha1
kind: SandboxFork
metadata:
  name: parallel-attempt
spec:
  sourceRef:
    name: agent-session-1
  replicas: 3
  allowSecretInheritance: true   # forks duplicate memory; opt in knowingly

Each row is honest about where it runs. The husk pod-native path is the DEFAULT; items that run on the raw-forkd engine path but are not yet wired on the husk default are marked.

Capability What you get Docs
Warm-claim activate P50 ~27 ms on the bare-metal reference node (snapshot load + fork-correctness handshake + guest-ready, integrity gate enforced); ~6-16 ms snapshot restore; ~3 MiB marginal memory per forked sandbox via CoW page sharing

init

steps before snapshotting, so there is no cold start on claimdocs/templates.mddocs/metering.mddocs/snapshot-distribution.md| Capability | What you get | Docs | |---|---|---| | Hardware isolation per session | A dedicated kernel per sandbox (KVM/Firecracker); the husk default runs each VM in its own unprivileged, PSA-restricted pod, which IS the per-VM boundary | |

docs/threat-model.mddocs/threat-model.md--enable-encryption

, fail-closed); HSM-backed keys and per-workspace scope are follow-upsdocs/encryption.mddocs/networking.md| Capability | What you get | Docs | |---|---|---| | Blocking exec | Correct stdout and exit code over the sandbox API; works on the husk default | |

#24)#24run_code

with a stateful kernel and rich multi-MIME results, in both SDKs and the MCP server; fail-closed KernelUnavailable

until the kernel ships in the husk base imagedocs/mcp.md{code, cause, remediation}

, parsed by both SDKs into a structured AgentRunError

#28sandbox(image)

, lazy default pool, from_name

reconnect, and async Python client; plus the mitos

CLI and an MCP serverdocs/cli.md| Capability | What you get | Docs | |---|---|---| | Declarative CRDs | SandboxTemplate , SandboxPool , SandboxClaim , SandboxFork with volume topology and fork behavior | |

/dev/kvm

from a device plugin, not privileged

), so CPU/memory requests are scheduler truth and PSA governs the poddocs/threat-model.mdMaxSandboxes

host-DoS ceiling with atomic slot reservation, and typed NoCapacity

backpressure instead of OOMing a nodedocs/scheduling.mdSandboxPool.spec.autoscale

scales the dormant husk-pod count to clamp(inUse + targetSpare, minWarm, maxWarm)

with an anti-thrash cooldown; a fixed pool is just minWarm == replicas

docs/scheduling.mddocs/failure-gc.md| Capability | What you get | Docs | |---|---|---| | Durable forkable workspaces | Workspace /WorkspaceRevision CRDs: durable, versioned, forkable agent state independent of any sandbox; /workspace hydrates on start and a committed revision dehydrates on terminate over the content-addressed store. Verified end to end on a real KVM cluster: create -> commit -> fork, where the forked sandbox reads the committed state | |

spec.outputs

narrows the dehydrate to listed subtrees; a {diff: true}

output records a content-hash diff against the parent headdocs/workspaces.md{git}

output pushes per-attempt branches to a rendezvous remote (git is the merge layer; the engine pushes, a human/CI merges). On the husk path the push is currently best-effort; fully wiring it is tracked#21| Capability | What you get | Docs | |---|---|---| | Metrics and tracing | Node and controller Prometheus metrics, a per-claim OpenTelemetry trace (--otlp-endpoint ), and a toggleable structured audit log (--audit-log ) recording command/path and byte counts, never content or secrets | |

docs/metering.mdkubectl sandbox

plugin (ls

/ ps

) and the operational GET /v1/metering

reportdocs/observability.mddocs/platforms/talos-hetzner.md

flowchart TB
  subgraph SDKs["SDKs and surfaces"]
    PY["Python SDK"]
    TS["TypeScript SDK / @mitos/sdk"]
    CLI["mitos CLI / mitos-mcp"]
  end

  subgraph CP["Kubernetes control plane"]
    CRD["SandboxTemplate -> SandboxPool -> SandboxClaim / SandboxFork / Workspace"]
    CTRL["controller (Deployment): reconciles CRDs, picks nodes, calls forkd over gRPC"]
    CRD --> CTRL
  end

  subgraph NODE["KVM-capable node"]
    FORKD["forkd (DaemonSet): builds snapshots, forks via CoW restore, bridges exec/files to the guest over vsock"]
    subgraph PODS["husk pods (DEFAULT): one unprivileged pod per VM"]
      VM1["VM + guest agent (PID 1)"]
      VM2["VM + guest agent (PID 1)"]
      VM3["VM + guest agent (PID 1)"]
    end
    FORKD --> PODS
  end

  SDKs -->|HTTP /v1| FORKD
  CTRL -->|gRPC| FORKD

Data paths:

Claim path: the controller selects a node, calls forkdFork

over gRPC; the claim status endpoint is forkd's HTTP API on that node.Exec path: SDK -> forkd HTTP API -> vsock -> guest agent (PID 1 inside the VM).

Sandboxes are not pods. Pod-scoped Kubernetes mechanisms (NetworkPolicy, ResourceQuota, PSA) govern the husk pod, not the workload inside the microVM; where we provide an equivalent, it is documented as ours. The sandbox is the VM, not the husk pod.

One command brings up a local kind cluster running a mock control plane, then the mitos

CLI drives the full claim path:

go build -o mitos ./cmd/mitos/

docker build -f Dockerfile.controller -t mitos-controller:ci .
docker build -f Dockerfile.forkd -t mitos-forkd:ci .
kind create cluster --name mitos-dev --config hack/kind-config.yaml
kind load docker-image mitos-controller:ci --name mitos-dev
kind load docker-image mitos-forkd:ci --name mitos-dev

./mitos dev up --skip-cluster-create
./mitos sandbox create --pool dev-default   # reaches Ready on the mock engine
./mitos sandbox ls
./mitos run echo hello --pool dev-default
./mitos dev down

The local dev cluster uses the mock fork engine (no KVM): claims reconcile to Ready

and control-plane dispatch works, but a real in-VM exec

needs a node with /dev/kvm

. For the no-cluster REST loop, run go run ./cmd/sandbox-server --mock --addr :8080

and use the Python SDK (sdk/python

). See docs/cli.md.

A numbers table belongs here only when our benchmark harness can regenerate it against the actual competitors on the same hardware, with scripts in this repo so anyone can reproduce or refute it. That harness is #15. The differentiator is not a single fastest-number claim: mitos

is, as far as we know, the only open-source, self-hostable, Kubernetes-native runtime whose engine does N-way live copy-on-write fork of a running microVM, with a warm-claim activate in the tens-of-ms class (P50 ~27 ms, reproducible from bench/husk-activate-latency.sh).

The figures below are other vendors' published numbers, for different operations, on different hardware, measured with different methodology; they are NOT measured by us and this is NOT a head-to-head claim. The matched-hardware comparison is #15.

Runtime Published figure (theirs, not ours) Operation they describe
mitos (ours, measured) ~27 ms P50 warm-claim activate (snapshot load + fork-correctness handshake + guest-ready) on the bare-metal reference node
E2B ~150 ms sandbox create
Daytona sub-90 ms create from snapshot
Modal sub-second sandbox create
CodeSandbox SDK ~863 ms / ~495 ms live fork / memory-resume
Fly Machines < 1 s machine start

What is comparable and real today is the qualitative pareto map: the combination of open source, self-hostable, k8s-native, and live snapshot fork is the axis where mitos

is alone.

mitos E2B Modal Daytona Morph Cloudflare Box Agent Sandbox Kata/KubeVirt raw Firecracker
Hardware isolation per session KVM microVM microVM gVisor container/VM microVM V8 isolate VM Kata option KVM KVM
Snapshot fork of running state yes, core primitive snapshot/resume memory snapshots no yes (Infinibranch) no disk fork no no build it yourself
Warm-pool millisecond claims yes (design center) warm pools warm pools workspaces yes instant isolates not published 1-3s cold seconds build it yourself
Durable forkable workspaces Workspace CRD no volumes workspaces yes, proprietary yes (disk) no PVCs PVCs no
Kubernetes-native API CRDs SaaS API SaaS API SaaS/OSS SaaS API SaaS API agent-native CLI CRDs CRDs no
Self-hostable yes, any KVM cluster partial OSS no OSS core no no no yes yes yes
Hosted option planned (same engine) yes yes yes yes yes yes (only) no no no
Your data stays on your infra yes (self-hosted) no no partial no no no yes yes yes
Open source Apache 2.0 partial no partial no no no Apache 2.0 Apache 2.0 Apache 2.0

SaaS runtimes (E2B, Modal, Daytona, Cloudflare) are fast but your agents' code, data, and credentials run on someone else's infrastructure with no self-host path at equivalent capability. Morph built the right state model (branch/restore) as a proprietary cloud, and our Workspace primitive targets the same semantics open source at fork(2) speeds. Box is a hosted-only disk-fork sandbox SaaS with an agent-native CLI, which validates the agent-native direction we take with mitos

and MCP (Box publishes no latency benchmark, so we make no comparison claim there). Agent Sandbox (k8s-sigs) is winning the Kubernetes API standard without a snapshot-fork engine, which is why we ship a conformance facade (cmd/facade

) to be its fastest backend rather than fighting it (docs/facade-conformance.md). Kata, KubeVirt, and raw Firecracker give you the isolation primitive and leave the pool, fork, distribution, and agent-API layers as your problem.

If an alternative beats us on an axis you care about and we have no roadmap line that closes it, that is a bug in our strategy: open an issue.

Early development, pre-1.0 (latest release v0.3.0

). Do not run untrusted code with this project in production yet: there has been no external security review, and some isolation controls remain open (see the threat model). Husk network egress is now verified end to end on a real KVM cluster: the in-pod default-deny filter, the cloud-metadata (169.254.169.254) block, and the per-template allowlist are all proven inside a restored VM, with no node prerequisite. See docs/threat-model.md for the exact per-boundary status. The control plane is real end-to-end (claim to running sandbox, proven in CI against mock engines and real Firecracker VMs, and exercised on a single-node Talos KVM cluster).

Husk-default scope, verified on a real KVM cluster: warm-claim activate, blocking exec (/v1/exec

with correct stdout and exit code), run_code

failing closed with a clean KernelUnavailable

(the husk base image lacks the kernel), self-heal / re-pend, pool warming plus demand autoscaling, live SandboxFork

(the source husk pod snapshots its running VM and N child husk pods restore it via CoW, each an independent Ready child), durable forkable workspaces (create -> commit -> fork where the forked sandbox reads the committed state, hydrate/dehydrate of /workspace

over the content-addressed store), and pod egress isolation (an in-pod default-deny nftables filter with an unconditional cloud-metadata block and a per-template allowlist: metadata-blocked, default-deny, and an allowlisted name reachable, all proven inside a restored VM with no node prerequisite) all work end to end on the husk default.

Tracked tails not yet fully on the husk default: streaming exec and the interactive PTY (the guest agent baked into the husk template snapshot predates the vsock streaming/PTY frame protocol and needs a template rebuild, #24); live-VM memory snapshot hooks for resumable workspace heads (gated behind --workspace-memory-snapshots

, fail-loud); S3/encryption live store-selection (the live transport defaults to the node content-addressed store); the husk {git}

workspace push (best-effort on husk today, #21); and multi-node N>1 (designed, single-node-verified, #3).

ROADMAP.md is the single source for what is done, in progress, and gated; the operating rule is that this repository never describes a system that does not exist.

Per-topic docs in docs/:

Topic Doc
Templates and OCI image to rootfs build

docs/volumes.mddocs/snapshot-format.mddocs/snapshot-distribution.mddocs/networking.mddocs/encryption.mddocs/metering.mddocs/scheduling.mddocs/observability.mddocs/failure-gc.mddocs/fork-correctness.mddocs/workspaces.mddocs/threat-model.mdmitos

CLIdocs/cli.mddocs/mcp.mddocs/platforms/talos-hetzner.mddocs/api/v2-spec.mdBENCHMARKS.mdContributions welcome. See CONTRIBUTING.md and CLAUDE.md for conventions, and the issues page for the work tracked against ROADMAP.md.

The threat model with per-boundary status lives in docs/threat-model.md; no external security review has happened yet, and the document says exactly what is open. To report a vulnerability, see SECURITY.md.

── more in #ai-agents 4 stories · sorted by recency
── more on @mitos 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/show-hn-mitos-n-way-…] indexed:0 read:14min 2026-06-20 ·