claw-orchestrator

claw-orchestrator is a skill for Claude Code from skillmds/skillmd. It costs 364 tokens per session (3,053 once invoked), scanned A, original, MIT.

A session manager for running coding agents from Claude Code, Codex, Cursor, OpenCode, and other supported tools. It keeps sessions available for multiple messages and can coordinate several agents.

In plain words
What is it for?
Use it to start and control coding sessions, send messages between them, and run multi-agent planning or review tasks.
Why use it?
It avoids manually starting, stopping, and messaging separate agent processes. It also keeps work organized when several agents need to collaborate.

Skill for Claude Code

Written for Claude Code: PreToolUse hook event. Also seen: mentions CLAUDE.md; mentions subagents; mentions Claude Code.

Part of the agents-mcp plugin — 34 skills shipped together

Good fit Use it to start and control coding sessions, send messages between them, and run multi-agent planning or review tasks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/skillmds/skillmd/claw-orchestrator
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add skillmds/skillmd --skill claw-orchestrator
Clone the repo
git clone --depth 1 https://github.com/skillmds/skillmd

Made for: Claude Code.

Or install agents-mcp, the plugin that ships this one along with the rest of its 34 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for claw-orchestrator

README.md
[![agentmods](https://agentmods.dev/badge/skills/skillmds/skillmd/claw-orchestrator/github.svg)](https://agentmods.dev/skills/skillmds/skillmd/claw-orchestrator)
Your own site
<a href="https://agentmods.dev/skills/skillmds/skillmd/claw-orchestrator"><img src="https://agentmods.dev/badge/skills/skillmds/skillmd/claw-orchestrator/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for claw-orchestrator

Your own site · 80×15
<a href="https://agentmods.dev/skills/skillmds/skillmd/claw-orchestrator"><img src="https://agentmods.dev/badge/skills/skillmds/skillmd/claw-orchestrator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 364 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,053 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00364 $0.03053
Opus 5.5 $0.00146 $0.01221
Sonnet 5 $0.00073 $0.00611
Haiku 4.5 $0.00036 $0.00305

Measured 4d ago against content hash 6bc1e4f8a37c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-23, from the pricing page.

Security

Grade A, and why

claw-orchestrator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/agents-mcp/skills/claw-orchestrator/SKILL.md · 221 lines

How it starts

The opening of the file, as written. The whole thing — 221 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Claw Orchestrator Skill

Claw Orchestrator — persistent multi-engine coding session manager for claw-style agent systems. Runs as a standalone CLI/server, with first-class OpenClaw plugin support. Wraps Claude Code, Codex, Antigravity, Cursor Agent, OpenCode, and custom CLIs into headless agentic engines with 69 tools.

Engine Quick Reference

Engine CLI Session Type Best For
claude claude Persistent subprocess Multi-turn, complex tasks
codex codex exec Per-message spawn One-shot execution
agy agy -p Per-message spawn Google Antigravity; plain-text, auto conversation resume
cursor agent -p Per-message spawn One-shot execution
opencode opencode run Per-message spawn Provider-agnostic (provider/model)

Core Workflow

// 1. Start session (any engine)
session_start({ name: "myproject", cwd: "/path/to/project", engine: "claude" })
session_start({ name: "codex-task", cwd: "/path/to/project", engine: "codex" })
session_start({ name: "agy-task", cwd: "/path/to/project", engine: "agy" })
session_start({ name: "cursor-task", cwd: "/path/to/project", engine: "cursor" })
session_start({ name: "opencode-task", cwd: "/path/to/project", engine: "opencode", model: "anthropic/claude-sonnet-4" })

// 2. Send messages
session_send({ name: "myproject", message: "Fix the auth bug" })

// 3. Check status / search history
coding_session_status({ name: "myproject" })
session_grep({ name: "myproject", pattern: "error" })

// 4. Stop when done
session_stop({ name: "myproject" })

Session Options

Parameter Description
engine claude (default), codex, agy, cursor, opencode
model Model name or alias (fable, opus, sonnet, haiku, gpt-5.5, agy-pro, composer-2)
permissionMode acceptEdits, auto, plan, bypassPermissions, manual, dontAsk (default = legacy alias for manual)
effort low, medium, high, xhigh, max, auto (xhigh is Opus 4.7-only, between high and max)
maxBudgetUsd Cost limit in USD
allowedTools List of allowed tool names

Read the full file on GitHub · 221 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 221 lines · 364 tokens per session scan A 6bc1e4f8a37c

Subscribe to this mod's changes

claw-orchestrator is a skill published in the GitHub repository skillmds/skillmd (1 stars, last pushed yesterday), licensed MIT. It adds 364 tokens to every session and 3,053 once invoked, about $0.0015 per session on Opus 5.5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-19.