Agent Orchestrator Framework (AOF) - A framework for orchestrating specialized Claude Code agent sessions with multiple usage levels: Claude Code plugins, MCP server abstraction, and low-level script access
npx claudepluginhub rawe/claude-agent-orchestratorCore Orchestrator plugin. Provides Python ao-* commands and slash commands for orchestrating specialized Claude Code agent sessions. Use this for agent management, session control, and custom agent blueprints. Requires Python and uv.
Context Store - Document management system for storing, querying, and retrieving documents across Claude Code sessions. Provides doc-* commands for document operations with a centralized server. Requires Context Store Server running and Python with uv.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
A framework for building, running, and observing AI agents. Define agent blueprints, run them as managed sessions, and observe execution in real-time.
Design principles:
Infrastructure for building AI agent systems. It provides:
Use it to prototype agent workflows, build multi-agent systems, or as a backend for agent-powered applications.
See Architecture for detailed component interactions and terminology.
Requires only Docker.
Get a Claude Code OAuth token:
claude setup-token
Create a .env file:
CLAUDE_CODE_OAUTH_TOKEN=<your-token>
Create the config directory:
mkdir -p config/agents
Start services:
docker compose -f docker-compose.quickstart.yml up
Requires Claude Code CLI, Docker, Python ≥3.11 + uv.
git clone <repo-url>
cd claude-agent-orchestrator
make start-all
Then start the Agent Runner in your project directory:
cd /path/to/your/project
/path/to/claude-agent-orchestrator/servers/agent-runner/agent-runner
# Containers
docker compose -f docker-compose.quickstart.yml down
# Local development
make stop-all
├── README.md
├── Makefile # Build, run, deploy commands
├── docker-compose.yml # Full dev environment
├── docker-compose.quickstart.yml # Minimal setup with pre-built images
│
├── docs/ # Documentation
│ ├── ARCHITECTURE.md # System architecture overview
│ ├── GETTING_STARTED.md # Detailed setup guide
│ └── containers/ # Container image documentation
│
├── servers/
│ ├── agent-coordinator/ # Session management, agent registry, SSE events
│ ├── agent-runner/ # Polls coordinator, executes agent runs
│ │ ├── lib/agent_orchestrator_mcp/ # Embedded MCP server
│ │ └── executors/
│ │ └── claude-code/ # Claude Code executor (Agent SDK)
│ └── context-store/ # Document storage server
│
├── mcps/ # External MCP servers
│ ├── context-store/ # Document management MCP
│ ├── neo4j/ # Neo4j graph database MCP
│ ├── atlassian/ # Jira + Confluence MCP
│ └── ado/ # Azure DevOps MCP
│
├── apps/dashboard/ # Web UI (React + Vite)
│
├── plugins/ # Claude Code plugins
│ ├── orchestrator/ # ao-* orchestration commands
│ └── context-store/ # doc-* document commands
│
├── config/agents/ # Agent blueprints
├── scripts/ # Dev startup scripts
└── tests/ # Integration tests
Optional MCP servers in mcps/ extend agent capabilities (Neo4j, Atlassian, Azure DevOps, Context Store).
The Agent Orchestrator MCP is embedded in the Agent Runner and automatically available to running agents.
See mcps/README.md for setup and configuration.
The config/agents/ directory contains example agent blueprints demonstrating various patterns: web research, Atlassian/ADO integration, knowledge management, browser automation, and more.
See config/agents/README.md for the full list.
Document storage server for sharing context between agents. Supports tagging, querying, and parent-child document relationships.
Optional semantic search enables finding documents by meaning (requires Ollama + Elasticsearch).
See servers/context-store/README.md for setup and API documentation.
| Service | URL |
|---|---|
| Dashboard | http://localhost:3000 |
| Agent Coordinator | http://localhost:8765 |
| Context Store | http://localhost:8766 |