Claude-skill-registry cook
Implement features end-to-end with smart intent detection. Accepts natural language or plan paths. Auto-routes to appropriate workflow (fast, auto, parallel, code).
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-nammdev-goads-krea" ~/.claude/skills/majiayu000-claude-skill-registry-cook && rm -rf "$T"
manifest:
skills/data/cook-nammdev-goads-krea/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
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?] → [Plan] → [Implement] → [Test?] → [Review] → [Finalize]
| Mode | Research | Testing | Review | All Phases |
|---|---|---|---|---|
| interactive | ✓ | ✓ | User approval | One at a time |
| auto | ✓ | ✓ | Auto if score≥9.5 | All at once |
| fast | ✗ | ✓ | Simplified | One at a time |
| parallel | Optional | ✓ | User approval | Parallel groups |
| no-test | ✓ | ✗ | User approval | One at a time |
| code | ✗ | ✓ | User approval | Per plan |
Step Output Format
✓ Step [N]: [Brief status] - [Key metrics]
Blocking Gates
- Testing: 100% pass required (unless no-test mode)
- 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