Skip to main content
ClaudeWave
Skill451 repo starsupdated today

orchestrator-worker

The orchestrator-worker Claude Code skill enables delegated task execution within a shared containerized workspace where a boss mission spawns focused worker agents. Use this when decomposing complex projects into scoped subtasks that leverage existing tooling and shared filesystem state, ensuring workers stay bounded to their assigned scope, verify results before completion, and communicate blockers or infeasibility immediately rather than expanding work independently.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/Th0rgal/sandboxed.sh /tmp/orchestrator-worker && cp -r /tmp/orchestrator-worker/skills/orchestrator-worker ~/.claude/skills/orchestrator-worker
Then start a new Claude Code session; the skill loads automatically.

SKILL.md

# Orchestrator Worker

You are a worker spawned by a boss mission. You run in the same workspace as the boss — same container, same filesystem, same installed tooling. Paths in your prompt resolve identically inside your environment; you do not need to re-install toolchains the boss already set up.

## Rules

1. Stay inside the assigned scope. Do not widen the task on your own.
2. Work only in the provided working directory or branch.
3. Do not modify files outside your scope unless the boss explicitly expands it.
4. Verify with the command from the prompt before finishing.
5. Do not report `DONE` unless the files on disk actually match your claimed result.
6. If the prompt is wrong, the task is impossible, or scope is insufficient, report that immediately instead of exploring unrelated work.
7. Be concise. Prefer changes, verification, and a short status over long explanation.

## Communication

The boss may send follow-up messages or retask you. Treat them as updated instructions and reprioritize immediately.

## Completion

When done, make the result easy to integrate:
- commit on your branch if you changed files
- include the verification result
- include the changed file paths
- report one of: `DONE`, `BLOCKED`, or `NOT_FEASIBLE`