Zeptobeam
Description
Orchestration layer for ZeptoClaw. Fault-tolerant multi-agent runtime inspired by OpenAI Symphony and Erlang/BEAM.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
**This repo is an experiment.** We forked [ErlangRT](https://github.com/kvakvs/ErlangRT) and extended it toward AI agent orchestration — sync scheduler, reduction counting, supervision trees, ETS/DETS, hot code upgrades. It got to 343 tests and then hit a wall: the sync scheduler can't `await`, so every LLM call required two thread hops and correlation IDs. Reduction counting models the wrong resource — AI agents don't consume CPU, they consume tokens and dollars. The learnings shaped [ZeptoRT](https://github.com/qhkm/zeptort), which fixes both problems. Active development is there.
ZeptoBeam
**BEAM-inspired multi-agent runtime in Rust. Fault-tolerant, message-driven, production-ready.**
[](https://rust-lang.github.io/rustup/concepts/channels.html) [](#) [](LICENSE)
What
ZeptoBeam is the orchestration runtime for [ZeptoClaw](https://github.com/qhkm/zeptoclaw) — a multi-agent AI system where autonomous agents collaborate on complex tasks.
Built on Erlang/BEAM principles, it handles the hard parts of running many agents at once:
- Process isolation — Each agent has its own mailbox, state, and lifecycle
- Fault tolerance — Crashed agents restart automatically via supervision trees
- Message passing — Agents communicate via async messages, no shared state
- Preemptive scheduling — Reduction-based preemption with 3-tier priority queues
- Durable state — Checkpoints to SQLite, WAL-backed durable mailboxes
- Hot code upgrades — Swap agent behaviors at runtime without restart
- MCP integration — Expose runtime as MCP server, consume external MCP tools
- Advanced orchestration — DAG dependencies, retry policies, resource budgets, approval gates
The Problem
AI agents fail. They hallucinate
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11