From sous-chef
Runs implementation end-to-end autonomously via Codex: implement, cross-review, fix findings, verify, report. For spec-able tasks the user wants done without back-and-forth.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sous-chef:serveThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Serve is fire, taste, and refire composed into one autonomous pass. Each stage
Serve is fire, taste, and refire composed into one autonomous pass. Each stage follows its sibling skill exactly; serve adds only what connects them: a run state file that outlives your context, and an autonomy contract that replaces the per-stage conversation.
Before stage 1, mint one run dir: RUN=$(mktemp -d "$SCRATCHPAD/serve-XXXXXX").
Each stage mints its job dir per its sibling skill, but inside $RUN (substitute
$RUN for $SCRATCHPAD in the sibling's mktemp) - even with a stale state file,
ls "$RUN" reconstructs the run. Keep $RUN/state.md, a few self-describing lines
rewritten in full at every stage transition:
task: <one line>
started: <UTC ISO-8601 of stage 1's fire>
budget: 5
runs_used: 2 (fire, taste)
stage: taste plated; next: refire
baseline: <abs path to stage 1's pre-fire.patch>
findings: <abs path to taste's findings.md>
job: <abs path to the job dir currently cooking, if any>
Bump runs_used when a run is launched, not when it lands - a compaction while a
job is in flight must not un-spend the budget. The conversation is not the ledger of
this run; state.md is. After compaction, or on any doubt about the count, read it
before firing anything. (A /clear or session death mints a new scratchpad - serve
is a single-session promise and does not survive that; the working tree and job
dirs still hold the work.)
If the arguments begin with --with <worker> (see fire's worker table), the
choice applies to the whole line: fire and refire run on that worker; taste
stays on Codex read-only when available, which makes the review cross-model
when the worker is not Codex. Record the worker in state.md (worker: sonnet).
Whenever implementer and reviewer share a lineage, say so in the final report.
The default all-Codex line always does: Codex reviews its own diff (fresh
context - codex exec carries no session memory - but same lineage), so
Claude's validation pass is the only cross-model check in that run.
/sous-chef:fire: preflight, ticket, backgrounded run, plating with
your own verification. Record the job's pre-fire.patch path as baseline: in
state.md - later stages scope against it. If plating fails verification, one delta
round (it counts against the serve budget). The pipeline advances only on green
verification: still red after the delta means fix it yourself if a surgical fix
will do, otherwise stop and report honestly - tasting a known-broken
implementation wastes the remaining budget./sous-chef:taste: read-only cross-review scoped to the delta
against the baseline: patch in state.md - the user's pre-existing WIP is not
part of this order - then your validation pass; record the resulting
findings.md path as findings:. Skip only if the diff is trivial (a few
lines); say so in the final report./sous-chef:refire: if the findings: file lists any CONFIRMED
findings, one scoped fix run, then re-verify each finding at its cited location.Stage transitions inherit fire/refire's changed-files-vs-<files> concurrent-edit
check; outside-list paths are named, warned, and excluded from the stage delta.
$RUN/state.md (its job: line names the log to tail), not conversation memory,
so ticks survive compaction. A serve asks for 15-45 unattended minutes; the ticks
are what make that tolerable.$RUN/state.md, not in your
context. Failed runs and retries count - the budget is quota spend, not useful
output - so when a retry eats a slot, the confirmation taste is the first thing
dropped; say so in the final report. If the work is not done inside the budget,
stop and report honestly where it stands; if what remains is goal-shaped (a check
command that must pass), offer to continue as /sous-chef:simmer rather than
overrunning.One message: what shipped (files, summary), what taste found (confirmed findings and how the refire resolved them; refuted count), the verification output you ran yourself, and anything OPEN. If all stages came back clean, say so plainly - two models in agreement, checks green, plate served.
Then write the run's receipt to .sous-chef/receipts/ per
../receipts/references/receipt-template.md
and, when the verdict is verified, end the report with its shareable summary line.
Receipt numbers come from the job logs, your own verification, and the diff against
baseline: - a line you can't back with a measurement gets dropped, not guessed.
/sous-chef:simmer.npx claudepluginhub tomascupr/sous-chef --plugin sous-chef2plugins reuse this skill
First indexed Jul 9, 2026
Orchestrates single-task implementation pipeline: plan, test, build, review, ship. Use for feature work, plan execution, or fixes scoped to a single task.
Implements approved specs or unambiguous tasks by writing code. Use for clear implementation requests, bug fixes, or when the user says 'go' or 'ship it'.