orca

An orchestration mode that sends each piece of work to a role-specific helper agent, with up to five running at once by default.

In plain words
What is it for?
Use it to split larger coding tasks into parallel assignments, set the number of helpers, or check whether orchestration is on.
Why use it?
It removes the need to coordinate separate helper agents manually and makes delegated work follow shared rules for roles, file access, and checking results.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/fo0/clawstash/orca
Any agent
npx skills add fo0/clawstash --skill orca
Clone the repo
git clone --depth 1 https://github.com/fo0/clawstash

Made for: Claude Code, Codex.

Per session 120 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,776 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00120 $0.01776
Opus 5 $0.00060 $0.00888
Sonnet 5 $0.00024 $0.00355
Haiku 4.5 $0.00012 $0.00178

Measured 2d ago against content hash 401de133f647, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

orca 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 2d 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.

.claude/skills/orca/SKILL.md · 95 lines

How it starts

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

Orca — Orchestrator Mode

When to Use

  • /orca (reports state and width) · /orca on|off|status · /orca 10 — the user asks what the mode is set to, or changes it
  • "orca mode", "orchestrator mode", "orca an/aus", "ab jetzt alles delegieren", "delegate everything"
  • Session start, when SCRATCHPAD.md still carries an Orca line from an earlier session or from before a compaction

Not this skill: choosing a subagent_type for one assignment while already orchestrating. That is the type/role table in CLAUDE.md → Subagents, with the longer form in agent_docs/review_process.md → Subagent Delegation.

State

On by default, width 5. Every session starts orchestrating; there is no activation step. The width is the only number to think about, and only if the default is wrong for the task.

Argument Effect
(none) Report state and width, change nothing — same as status
N — any number (/orca 10, /orca 2) Set the parallel width for this session
off Plain Claude Code behavior for the rest of this session
on Back to orchestrating, at the last width set (5 if never set)
status Report state and width, change nothing

Off is a command, never a default. The next session orchestrates again, because nothing carries off forward — not this file, not CLAUDE.md, not SCRATCHPAD.md. Only a non-default width is worth persisting: write it to SCRATCHPAD.mdCurrent Work as **Orca** — width <N> (<date>) so a compaction cannot lose it. A line there is authority, not staleness — obey it and say in one sentence that the width came from the scratchpad; the user has /orca 5 if it is wrong. No line means width 5. (Correcting the line to the default instead would throw away the one thing it exists to protect: a same-day compaction and a same-day earlier session are indistinguishable from the date.)

The contract

  1. Every unit of task work is delegated. No exception. Reading a file for its content, searching, planning, editing, writing tests, running checks, reviewing — all of it happens in a subagent, including the units that would plainly be faster done directly. "Too small to delegate" is not a judgment this mode makes; /orca off is.
  2. Each assignment names a role, from the roster in CLAUDE.md → Subagents. The role is the lens the brief frames — architect, implementer, reviewer, domain, product, docs, security — and the wave report names it. Seat the roles the change actually calls for, never a standing panel and never two agents with the same lens: agreement between identical lenses is not evidence. A code change always seats reviewer, and never the agent that wrote it — a fresh reading beats an author verifying the intent it already holds.
  3. The orchestrator keeps four things, and all four are decisions rather than work: decomposition and assignment · read-only verification of what comes back (git status, git diff, reading the changed files) · integration and its gates (commit, push, /pr, /ci, /rollback, merge, deploy) · the report to the user. A gate handed to a subagent is a gate that answers itself — the subagent holds the tool and has nobody to ask.
  4. Subagents inherit the orchestrator's quality — by omission, not by setting. Leave the model parameter off and the subagent runs the session's model; leave the effort / reasoning parameter off, where the surface has one, and it runs the session's effort. Never pass a smaller model, never pass a lower effort, never route work to a cheaper agent to save tokens. Two places where inheritance does not happen on its own: a repo-local .claude/agents/*.md whose frontmatter pins a model: overrides it — pass the session's model explicitly for that agent type or do not use it; and subagent_type: fork always inherits the parent model whatever else is passed.
  5. Width: 5 in parallel unless overridden. Independent assignments go out in a single message, up to N; the rest waits for a free slot. Dependent work is sequenced — never parallelized in the hope that the order works out.
  6. Disjoint write scopes. Two subagents in the same wave never hold write access to the same file. Split by file, or sequence, or give each one its own git worktree (isolation: "worktree") where the surface offers it.
  7. Assignments are self-contained. A subagent has no conversation history: name the goal, the exact paths, what was already tried, the skill file to follow if one applies, the constraints, and what the return value must contain. Ask for a structured return — files touched, what changed, what was verified, what is still open.
  8. Verify the diff, not the summary. A subagent's report describes intent. After every write-capable agent, read the actual change. A wave is done when the orchestrator has looked at what it produced, not when the agent says so.

Read the full file on GitHub · 95 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. 2d ago First seen · 95 lines · 120 tokens per session scan A 401de133f647

Subscribe to this mod's changes

orca is a skill published in the GitHub repository fo0/clawstash (1 stars, last pushed 2d ago), licensed MIT. It adds 120 tokens to every session and 1,776 once invoked, about $0.0006 per session on Opus 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-08-31.

Related

Other skills, from other repositories

user-usecases

Database of real user use cases for APIbase platform. Contains detailed examples of how specific APIs are onboarded, wrapped, and served to AI agents. Use this skill when you need to reference real integration examples, explain the APIbase onboarding process, or design new API wrappers based on proven patterns.

whiteknightonhorse/APIbase · 63 tokens

business-model-validator

Use when a prospect, new customer, or existing operator wants to know whether Zooza fits their business, or which Zooza features map to how they operate. No Zooza account required — works as a pure knowledge interview.

zooza-dev/zooza-mcp-server · 49 tokens

spotify-mcp-doctor

Diagnose and repair NovaLux12/spotify-mcp-server failures — auth, permissions, devices, rate limits, OpenClaw wiring. Use when Spotify tool calls fail or setup stalls.

NovaLux12/spotify-mcp-server · 44 tokens

delegacion-local

Regla y catálogo para delegar pasos mecánicos (resumir, clasificar, extraer, boilerplate, mensaje de commit desde un diff, traducir texto o archivo, resumir salida de lint/tests/CI, explicar código, describir una imagen, verificar si el backend local está disponible) a modelos locales vía las tools local del MCP…

ZahiriNatZuke/local-delegate · 137 tokens

class-management

Use when the user wants to create a new class, group, or course in Zooza — e.g. "set up a Monday yoga class", "add a new group", "schedule a course". Guides through programme selection, venue, trainer, session pattern, and commits.

zooza-dev/zooza-mcp-server · 56 tokens

feedback-nudge

Use when the user wants to report a bug, request a feature, or send feedback to the Zooza engineering team. Also offer proactively after a successful commit operation (max once per week).

zooza-dev/zooza-mcp-server · 38 tokens