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.md
source 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 PatternDetected ModeBehavior
Path to
plan.md
or
phase-*.md
codeExecute existing plan
Contains "fast", "quick"fastSkip research, scout→plan→code
Contains "trust me", "auto"autoAuto-approve all steps
Lists 3+ features OR "parallel"parallelMulti-agent execution
Contains "no test", "skip test"no-testSkip testing step
DefaultinteractiveFull workflow with user input

See

references/intent-detection.md
for detection logic.

Workflow Overview

[Intent Detection] → [Research?] → [Plan] → [Implement] → [Test?] → [Review] → [Finalize]
ModeResearchTestingReviewAll Phases
interactiveUser approvalOne at a time
autoAuto if score≥9.5All at once
fastSimplifiedOne at a time
parallelOptionalUser approvalParallel groups
no-testUser approvalOne at a time
codeUser approvalPer 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

PhaseSubagent
Research
researcher
(parallel, optional in fast)
Scout
scout
Plan
planner
UI Work
ui-ux-designer
Testing
tester
,
debugger
Review
code-reviewer
Finalize
project-manager
,
docs-manager
,
git-manager

References

  • references/intent-detection.md
    - Detection rules and routing logic
  • references/workflow-steps.md
    - Detailed step definitions for all modes
  • references/review-cycle.md
    - Interactive and auto review processes
  • references/subagent-patterns.md
    - Subagent invocation patterns