[task|plan-path] Task or plan path
A concrete technical task, or an approved plan.md path. A plan path loads that plan and skips creating another.
/ak:cook ./plans/utm-capture/plan.md Quick Ref / Command
Marketing Kit
/ak:cook
Implements known-scope tasks or plans through brainstorm contract, intent detection, scout, research, plan, review, implementation, testing, finalization, and journal steps.
Capture contract
Detect intent
Scout codebase
Research and plan
Rule 01
KISS and DRY: implement the requested scope cleanly without optional expansion.
Rule 02
Default mode is interactive; mode flags change workflow shape, not the need for a contract and plan.
Rule 03
Verification evidence is part of the deliverable, not an afterthought.
Core lanes from input to output, aligned with the command's real execution path.
Start
Input, scope, route
Work
Agent / skill execution
Verify
Gate, review, validation
Close
Report, handoff, artifact
How to invoke the skill: syntax, positional arguments, shared options, then each subcommand with its own syntax and outcome.
Syntax
/ak:cook [task|plan-path] [--interactive|--fast|--parallel|--auto|--no-test] [--tdd] [--advice][task|plan-path] Task or plan path
A concrete technical task, or an approved plan.md path. A plan path loads that plan and skips creating another.
/ak:cook ./plans/utm-capture/plan.md --interactive Full workflow
Default. Full workflow with human review gates. Still requires the opening contract, plan, implementation, testing, review, and finalization.
--fast Skip research
Skips research and moves from scout to a concise plan. A plan, tests, and review are still required.
/ak:cook "Add consent-aware UTM capture to the signup form" --fast --parallel Concurrent phases
Allows independent phases to execute concurrently. Requires explicit dependencies and non-overlapping file ownership.
--auto Fewer review pauses
Removes routine human review pauses. Tests, code review, and security policy still apply. Does not authorize publish, deploy, or Git.
/ak:cook ./plans/utm-capture/plan.md --auto --no-test Skip tests
Skips the testing stage. Code review stays mandatory and missing test evidence must be warned.
--tdd Tests-first phases
Adds tests-first behavior within each relevant phase. Does not replace the selected base mode.
/ak:cook "Refactor auth middleware" --tdd --advice Advisory checkpoints
Adds kongming advisory checkpoints. Advice does not implement, approve, or expand authority.
/ak:cook "Add consent-aware UTM capture" --advice How options work together on one invocation. This does not replace the option cards above.
Composable flags documented by the skill: --tdd for tests-first refactoring, --advice for kongming supervision, --yagni to cut unnecessary scope, and --skip-journal to skip the automatic journal step.
--interactive Full workflow
--fast Skip research
--parallel Multi-agent execution
--auto Auto-approve steps
--no-test Skip testing step
Each item contrasts a tempting shortcut with the required approach.
Tempting shortcut
This is simple enough to code directly.
Do this instead
The skill says simple tasks are where unexamined assumptions waste the most time.
Tempting shortcut
Passing one test means it is done.
Do this instead
Side effects, public contracts, shared tests, and lint/type/build health are part of done.
Concrete invocations for each flag, subcommand, mode, or route available in the live workflow.
/ak:cook Add user authentication to the app /ak:cookAdd user authentication to the app--fast
/ak:cookpath/to/plan.md--auto
/ak:cookRefactor auth middleware--tdd
/ak:cookAdd search to the catalog--interactive
/ak:cookSplit billing and notifications work--parallel
/ak:cookUpdate README badges--no-test