Agent Orchestra
Description
Hands-on experiments with multi-agent orchestration: Claude + LangGraph on the Python side, a thin TypeScript MCP server on top. Goal is intuition for which pattern (sequential / parallel / supervisor / hierarchical) fits which problem.
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
agent-orchestra
🚧 **Work in progress** — personal sandbox for exploring multi-agent orchestration patterns.
This repo is my personal playground where I'm experimenting with recent agent frameworks and orchestration patterns that have appeared in late 2025 / early 2026:
- Claude Agent SDK (Anthropic)
- LangGraph — stateful multi-agent workflows
- Model Context Protocol (MCP) — standard tool interface across agents
- Computer Use / browser agents — follow-up experiments planned
The goal is not to ship a product. The goal is to *understand the trade-offs* between different orchestration patterns (sequential chain, parallel fan-out/fan-in, supervisor, hierarchical) and to get comfortable with the tooling.
Status
| Area | Status | Last touched |
|---|---|---|
| Basic agents (Python) | ✅ Done | 2026-03-28 |
| LangGraph supervisor workflow | ✅ Done | 2026-04-02 |
| Sequential chain experiment | ✅ Done | 2026-04-05 |
| Parallel fan-out experiment | ✅ Done | 2026-04-08 |
| MCP server (TypeScript) | 🟡 In progress | 2026-04-11 |
| Hierarchical orchestration | 🟡 In progress | 2026-04-16 |
| Computer Use integration | ⬜ Planned | — |
| Benchmarks / evals | ⬜ Planned | — |
See [`docs/ROADMAP.md`](docs/ROADMAP.md) for details.
Layout
agent-orchestra/
├── python/ # Agents + LangGraph workflows
│ ├── agents/ # Individual role agents
│ ├── graphs/ # LangGraph workflow definitions
│ ├── tools/ # Tools exposed to agents
│ └── main.py
├── mcp-server/ # TypeScript MCP server exposing agents as MCP tools
├── experiments/ # Standalone experiments, one per pattern
└── docs/ # Notes, architecture, roadmap
Quick start
# Python side
uv sync
cp .env.example .env # add your ANTHROP
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