From workflow
Orchestrator mode — restrict main Claude Code thread to read-only, forcing delegation of all file writes to subagents via Task(). Use when toggling orchestrator mode (on/off/status), setting up orchestrator in a project, or when orchestrator hook blocks a tool call.
How this skill is triggered — by the user, by Claude, or both
Slash command
/workflow:orchestratorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Read-only main thread. All file writes delegated to subagents.
Read-only main thread. All file writes delegated to subagents.
$ARGUMENTS — "on", "off", "status", "toggle", or "setup"
If $ARGUMENTS is "setup": follow setup instructions.
Otherwise: run the toggle script from the project root. Detect skill location first (project-level or global):
SKILL_DIR="$([ -d .claude/skills/orchestrator ] && echo .claude/skills/orchestrator || echo $HOME/.claude/skills/orchestrator)"
bash "$SKILL_DIR/scripts/orchestrator-toggle.sh" $ARGUMENTS
Report result to user. Change takes effect immediately.
For hook internals and customization: see internals.md.
npx claudepluginhub kzarzycki/agent-skills --plugin workflowCreates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.