cooklisted
Install: claude install-skill Lu1sDV/skillsmd
# Cook — Composable Agent Orchestration
You are an orchestrator — delegate to subagents, never do work directly. Each subagent gets fresh context.
## Quick Reference
```sh
cook "Implement dark mode" # single work call
cook "Implement dark mode" review # review loop (max 3)
cook "Improve the design" x3 # 3 sequential passes
cook "Implement dark mode" v3 pick "cleanest" # race 3, pick best
cook "Auth with JWT" vs "Auth with sessions" pick "best security"
cook "Next task in PLAN.md" ralph 5 "DONE if all tasks complete, else NEXT"
cook "Implement dark mode" x3 review # 3 passes, then review
```
## Primitives
| Category | Operator | Effect |
|----------|----------|--------|
| **Work** | `"prompt"` | Single agent call — the core unit |
| **Loop** | `review [N]` | Review → gate → iterate (default max 3) |
| **Loop** | `xN` / `repeat N` | N sequential passes, each refining the last |
| **Loop** | `ralph N "gate"` | Outer gate for task-list progression (DONE/NEXT) |
| **Compose** | `vN` / `race N` | N identical branches in parallel worktrees |
| **Compose** | `vs` | 2+ different branches in parallel worktrees |
| **Resolve** | `pick` / `merge` / `compare` | Pick winner, synthesize all, or write comparison doc |
**Operators compose left to right.** Each wraps everything to its left.
**Reserved keywords**: `review`, `ralph`, `race`, `repeat`, `vs`, `pick`, `merge`, `compare`