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

✍️ OpenClawRadar📅 Published: April 1, 2026🔗 Source
Open-source multi-agent framework extracted from Claude Code leak
Ad

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
Ad

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

Ad

👀 See Also

Universal CLAUDE.md reduces Claude output tokens by 63% in benchmarks
Tools

Universal CLAUDE.md reduces Claude output tokens by 63% in benchmarks

A developer created a universal CLAUDE.md file that reduces Claude's output tokens by 63% across five benchmark tests while maintaining technical accuracy. The file addresses common Claude behaviors like verbose responses, unnecessary formatting, and unsolicited suggestions.

OpenClawRadar
Developer Builds GALA Programming Language with Claude Code, Notes Strong Typing Improves AI-Generated Code Reliability
Tools

Developer Builds GALA Programming Language with Claude Code, Notes Strong Typing Improves AI-Generated Code Reliability

A developer built GALA, a functional programming language that transpiles to Go, using Claude Code extensively. The language features sealed types, exhaustive pattern matching, immutability by default, and monads, with Claude helping implement type inference, pattern-matching transformers, and fixing over 40 bugs.

OpenClawRadar
WinRemote MCP: Open Source MCP Server for Full Control of Windows Desktops
Tools

WinRemote MCP: Open Source MCP Server for Full Control of Windows Desktops

WinRemote MCP provides AI agents with full control over Windows desktops, allowing for UI detection, file operations, registry access, and more, utilizing over 40 tools.

OpenClawRadar
Gemma 4 E2B Tested as Multi-Agent Coordinator in TypeScript Framework
Tools

Gemma 4 E2B Tested as Multi-Agent Coordinator in TypeScript Framework

A developer tested Gemma 4 E2B as a coordinator in a multi-agent setup using the open-multi-agent TypeScript framework. The model successfully decomposed tasks into JSON, assigned agents, called tools like bash and file operations, and synthesized results.

OpenClawRadar