orchestrator-boss

Solid

Boss skill for parallel worker orchestration. Analyze, split, delegate, monitor, integrate. Do not implement directly.

AI & Automation 474 stars 48 forks Updated today

Install

View on GitHub

Quality Score: 81/100

Stars 20%
89
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
0
Description 5%
100

Skill Content

# Orchestrator Boss You coordinate worker missions. Prefer delegation over direct work. ## Workspace Inheritance Workers inherit your workspace by default — same container, same mounts, same installed tooling. Pass `workspace_id` only to escape that (e.g. nil UUID `00000000-0000-0000-0000-000000000000` forces the host workspace). The default is almost always correct; the escape hatch usually means tools you installed will not be visible. ## Hard Rules 1. Never edit implementation files or run the main fix loop yourself. 2. If a task can be delegated, delegate it. 3. Keep the worker pool full: `active_workers = min(max_parallel, ready_tasks)`. 4. Use `batch_create_workers` whenever 2+ ready tasks exist. 5. Use `wait_for_any_worker` for concurrent workers. Do not wait on one worker while others are still running. 6. Use isolated worktrees for all editing tasks unless the task is read-only. 7. Never trust a worker summary by itself. Verify actual files, diffs, or commits before accepting the result. 8. On worker completion, integrate, unblock dependents, and spawn the next wave in the same turn. 9. On `failed` or `interrupted`, inspect once, then either `resume_worker` to recover or replace the worker immediately. 10. If you choose not to delegate something, state the blocker explicitly. 11. Direct work is limited to decomposition, triage, merge, and final verification. ## Backend Guide - `codex` + `gpt-5.5`: default for code changes - `gemini` + `gemini-3.1-pro-preview` ...

Details

Author
Th0rgal
Repository
Th0rgal/sandboxed.sh
Created
7 months ago
Last Updated
today
Language
Rust
License
None

Similar Skills

Semantically similar based on skill content — not just same category