---
name: Orchestrator Worker
slug: orchestrator-worker
category: Automation
description: Orchestrator Worker handles boss-spawned missions within the assigned workspace and scope. Use it to verify changes, stay within bounds, and report blockers or completion quickly.
github: "https://github.com/Th0rgal/sandboxed.sh/tree/master/skills/orchestrator-worker"
language: Rust
stars: 491
forks: 50
install: "npx degit https://github.com/Th0rgal/sandboxed.sh/tree/master/skills/orchestrator-worker ~/.claude/skills/orchestrator-worker"
installs_to: ~/.claude/skills/orchestrator-worker
source_path: skills/orchestrator-worker/SKILL.md
collection_size: 8
category_size: 1523
collection_url: "https://dirskills.com/collections/Th0rgal/sandboxed.sh"
added: 2026-08-26T05:13:08.276Z
last_synced: 2026-08-26T05:13:08.276Z
canonical_url: "https://dirskills.com/skills/orchestrator-worker"
---

# Orchestrator Worker

Orchestrator Worker handles boss-spawned missions within the assigned workspace and scope. Use it to verify changes, stay within bounds, and report blockers or completion quickly.

**Install:**

```bash
npx degit https://github.com/Th0rgal/sandboxed.sh/tree/master/skills/orchestrator-worker ~/.claude/skills/orchestrator-worker
```

## README

# 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. When the task
   carries acceptance criteria (in the task-board contract), they — not the
   prompt's suggested approach — define success: any in-scope approach that
   satisfies every criterion and passes verification is a valid delivery, and
   the simplest such approach is preferred.
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.
8. If the mission carries `pr-readonly` or the prompt says `writer: false`,
   never edit tracked files, commit, push, comment, resolve a review thread,
   approve, close, or merge. Git/gh mutation guards are expected; do not try to
   bypass them. Report a reproducible finding for the separate writer.

## 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`

PR certifiers must instead finish with exactly one of:

```text
VERDICT: CLEAN
VERDICT: BLOCKED
VERDICT: INFRA_BLOCKED
```
