Claude-skill-registry cook
ALWAYS activate this skill before implementing EVERY feature, plan, or fix.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/cook" ~/.claude/skills/majiayu000-claude-skill-registry-cook-ef3eaa && rm -rf "$T"
manifest:
skills/data/cook/SKILL.mdsource content
Cook - Smart Feature Implementation
End-to-end implementation with automatic workflow detection.
Principles: YAGNI, KISS, DRY | Token efficiency | Concise reports
Usage
/cook <natural language task OR plan path>
Optional flags:
--fast, --parallel, --no-test, --auto
Example:
/cook "Add user authentication to the app" --fast /cook path/to/plan.md --auto
Smart Intent Detection
| Input Pattern | Detected Mode | Behavior |
|---|---|---|
Path to or | code | Execute existing plan |
| Contains "fast", "quick" | fast | Skip research, scout→plan→code |
| Contains "trust me", "auto" | auto | Auto-approve all steps |
| Lists 3+ features OR "parallel" | parallel | Multi-agent execution |
| Contains "no test", "skip test" | no-test | Skip testing step |
| Default | interactive | Full workflow with user input |
See
references/intent-detection.md for detection logic.
Workflow Overview
[Intent Detection] → [Research?] → [Review] → [Plan] → [Review] → [Implement] → [Review] → [Test?] → [Review] → [Finalize]
Default (non-auto): Stops at
[Review] gates for human approval before each major step.
Auto mode (--auto): Skips human review gates, implements all phases continuously.
| Mode | Research | Testing | Review Gates | Phase Progression |
|---|---|---|---|---|
| interactive | ✓ | ✓ | User approval at each step | One at a time |
| auto | ✓ | ✓ | Auto if score≥9.5 | All at once (no stops) |
| fast | ✗ | ✓ | User approval at each step | One at a time |
| parallel | Optional | ✓ | User approval at each step | Parallel groups |
| no-test | ✓ | ✗ | User approval at each step | One at a time |
| code | ✗ | ✓ | User approval at each step | Per plan |
Step Output Format
✓ Step [N]: [Brief status] - [Key metrics]
Blocking Gates (Non-Auto Mode)
Human review required at these checkpoints (skipped with
--auto):
- Post-Research: Review findings before planning
- Post-Plan: Approve plan before implementation
- Post-Implementation: Approve code before testing
- Post-Testing: 100% pass + approve before finalize
Always enforced (all modes):
- Testing: 100% pass required (unless no-test mode)
- Code Review: User approval OR auto-approve (score≥9.5, 0 critical)
- Finalize: project-manager AND docs-manager must complete
Required Subagents
| Phase | Subagent |
|---|---|
| Research | (parallel, optional in fast) |
| Scout | |
| Plan | |
| UI Work | |
| Testing | , |
| Review | |
| Finalize | , , |
References
- Detection rules and routing logicreferences/intent-detection.md
- Detailed step definitions for all modesreferences/workflow-steps.md
- Interactive and auto review processesreferences/review-cycle.md
- Subagent invocation patternsreferences/subagent-patterns.md