by Enderfga
Run Claude Code, Codex, Gemini, Cursor Agent and custom coding CLIs as one unified runtime for claw-style agent systems. Runs standalone, with first-class OpenClaw plugin support.
# Add to your Claude Code skills
git clone https://github.com/Enderfga/claw-orchestratorGuides for using ai agents skills like claw-orchestrator.
Run Claude Code, Codex and other coding agents in one unified runtime.
Claw Orchestrator turns interactive coding CLIs into programmable, headless agent engines. Start persistent sessions, route tasks across different coding agents, coordinate multi-agent councils, and expose everything through a clean tool-based API.
It's a TypeScript runtime for orchestrating Claude Code, OpenAI Codex, Gemini, Cursor Agent, and custom coding CLIs as persistent, programmable coding agents.
Claude Code, Codex, Gemini, Cursor Agent, or your own custom CLI — orchestrated as one runtime.
Runs standalone, with first-class OpenClaw plugin support and a path to other claw-style agent platforms.
Coding agents are powerful, but most are still designed as interactive CLIs.
That works well when a human is sitting in front of a terminal. It breaks down when you want agents to:
Claw Orchestrator is the control layer for that.
No comments yet. Be the first to share your thoughts!
Keep coding agents alive across requests.
const session = await manager.startSession({
name: "fix-tests",
engine: "claude",
cwd: "/path/to/project",
});
await manager.sendMessage("fix-tests", "Fix the failing tests");
Drive different coding agents through one unified interface.
await manager.startSession({ name: "claude-task", engine: "claude" });
await manager.startSession({ name: "codex-task", engine: "codex" });
await manager.startSession({ name: "gemini-task", engine: "gemini" });
await manager.startSession({ name: "cursor-task", engine: "cursor" });
Run multiple agents in parallel with isolated git worktrees, independent reasoning, and review-based collaboration.
await manager.councilStart("Design and implement an auth system", {
agents: [
{ name: "Planner", engine: "claude" },
{ name: "Builder", engine: "codex" },
{ name: "Reviewer", engine: "claude" },
],
});
Expose coding sessions as tools so other agents and systems can control them. The runtime registers 35 tools, including:
session_start session_send session_status
session_grep session_compact session_inbox
team_send team_list agents_list
council_start council_review council_accept
ultraplan_start ultrareview_start
npm install -g @enderfga/claw-orchestrator
clawo serve
clawo session-start fix-tests --engine claude --cwd .
clawo session-send fix-tests "Fix the failing tests"
import { SessionManager } from "@enderfga/claw-orchestrator";
const manager = new SessionManager();
await manager.startSession({ name: "task", cwd: "/project" });
const result = await manager.sendMessage("task", "Fix the failing tests");
clawo council start "Refactor the API layer and add tests"
If you run OpenClaw, Claw Orchestrator installs as a managed plugin. The same tools (session_start, team_send, council_start, ...) become available to every OpenClaw agent.
curl -fsSL https://raw.githubusercontent.com/Enderfga/claw-orchestrator/main/install.sh | bash
This installs via npm, registers the plugin in ~/.openclaw/openclaw.json, and restarts the gateway. See skills/references/getting-started.md for the full setup.
| Engine | CLI | Tested Version | Status |
|--------|-----|----------------|--------|
| Claude Code | claude | 2.1.126 | Supported |
| Codex | codex | 0.128.0 | Supported |
| Gemini | gemini | 0.36.0 | Supported |
| Cursor Agent | agent | 2026.03.30 | Supported |
| Custom CLI | any | — | Supported |
Any coding CLI that can run as a subprocess can be integrated as a custom engine.
┌─────────────────────┐
│ Claw Orchestrator │
└──────────┬──────────┘
│
┌───────────────────┼───────────────────┐
│ │ │
┌──────▼──────┐ ┌──────▼──────┐ ┌──────▼──────┐
│ Claude Code │ │ Codex │ │ Custom CLI │
└──────┬──────┘ └──────┬──────┘ └──────┬──────┘
│ │ │
└───────────┬───────┴───────────┬───────┘
│ │
Persistent Sessions Tool API
│ │
└──── Multi-Agent Council
For source-level architecture, see CLAUDE.md. For deeper reference docs, see skills/references/.
v3.x uses the Claw Orchestrator package, clawo CLI, and engine-neutral tool API. The v3.0 compatibility aliases were removed in v3.1.0.
| What | v2.x | Current |
|---|---|---|
| npm package | @enderfga/openclaw-claude-code | @enderfga/claw-orchestrator |
| CLI binary | claude-code-skill | clawo |
| Tool names | claude_session_start, claude_session_send, ... | session_start, session_send, ... |
| OpenClaw plugin id | openclaw-claude-code | claw-orchestrator |
To upgrade:
npm uninstall -g @enderfga/openclaw-claude-code
npm install -g @enderfga/claw-orchestrator
curl -fsSL https://raw.githubusercontent.com/Enderfga/claw-orchestrator/main/install.sh | bash
If your OpenClaw config still has an old plugin entry, remove it and register claw-orchestrator. Update scripts and tool callers before moving to v3.1.0 or newer.
Active development. Current focus areas:
See CONTRIBUTING.md. PR prefixes (feat:, fix:, docs:, chore:, test:) are required. Run npm run build && npm run lint && npm run format:check && npm run test before submitting.
MIT — see LICENSE.