Open-source multi-agent framework extracted from Claude Code leak

Claude Code's full source code was leaked via source maps, exposing 500,000+ lines of TypeScript. A developer extracted the multi-agent orchestration layer and rebuilt it as a standalone open-source framework called Open Multi-Agent.
Key features extracted from Claude Code
- Multi-agent teams with role-based specialization
- Task pipelines with dependency resolution (topological scheduling)
- Inter-agent messaging + shared memory
- LLMAdapter interface with Anthropic/OpenAI built-in
- In-process execution, no subprocess overhead
- 5 built-in tools: bash, file read/write/edit, grep
Framework details
The framework is approximately 8,000 lines of TypeScript and MIT licensed. The key difference from the original Claude Code implementation is that it's model-agnostic. You can run a team where one agent uses Claude for planning and another uses GPT for implementation, with the same workflow, shared memory, and message bus between them.
Technical implementation
The LLMAdapter interface is simple to implement for any model. You need to implement chat() and stream() methods. The developer expressed interest in seeing community adapters for Ollama, llama.cpp, vLLM, and other models.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Helix: Open-Source Framework Turns Claude into Personal AI Agent for macOS
Helix is an open-source framework that connects Claude via Claude Code in Terminal to macOS through four MCP server plugins, enabling Claude to control applications, maintain persistent memory, run scheduled tasks, and operate with local voice processing.

New Tool Injects Instructions into Claude Code Based on Context Usage
A developer created a tool that monitors context usage and injects custom instructions to prevent mid-task compaction disasters.

OpenClaw Multi-Agent Workflow Issues: Stalling, Context Loss, and Token Inefficiency
A developer reports OpenClaw multi-agent workflows frequently stall with agents hanging, experience context leakage despite custom documentation, and consume excessive tokens with no output. The setup used Gemini 3 Pro/Codex models with a COO orchestrator and specialized task agents.

OpenClaw Codex-GPT5.4 Task Validation Loop Issue
A developer reports Codex-GPT5.4 through OpenClaw gets stuck in a task validation loop during autonomous project work, repeatedly identifying and confirming tasks without executing them. They've implemented workspace controls including TASKS.md, heartbeat rules, and persona files to address the issue.