agentsclimarketplace

Cook

Skill bestagentkits/ck-skills/plugins/ck-skills/skills/cook

ALWAYS activate this skill before implementing EVERY feature, plan, or fix.From its SKILL.md

Install
npx -y skills add bestagentkits/ck-skills --skill cook

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • skips confirmationTells the agent to proceed without asking first, 3 times: "--auto: Auto-approve all steps" and 2 more.
  • 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

6.4 KB, ~1.6k tokens by cl100k_base, as published. Nobody here has run it

Cook - Smart Feature Implementation

End-to-end implementation with automatic workflow detection.

Principles: YAGNI, KISS, DRY | Token efficiency | Concise reports

Usage

/ck:cook <natural language task OR plan path>

IMPORTANT: If no flag is provided, the skill will use the interactive mode by default for the workflow.

Optional flags to select the workflow mode:

  • --interactive: Full workflow with user input (default)
  • --fast: Skip research, scout→plan→code
  • --parallel: Multi-agent execution
  • --no-test: Skip testing step
  • --auto: Auto-approve all steps

Example:

/ck:cook "Add user authentication to the app" --fast
/ck:cook path/to/plan.md --auto
<HARD-GATE> Do NOT write implementation code until a plan exists and has been reviewed. This applies regardless of task simplicity. "Simple" tasks are where unexamined assumptions waste the most time. Exception: `--fast` mode skips research but still requires a plan step. User override: If user explicitly says "just code it" or "skip planning", respect their instruction. </HARD-GATE>

Anti-Rationalization

ThoughtReality
"This is too simple to plan"Simple tasks have hidden complexity. Plan takes 30 seconds.
"I already know how to do this"Knowing ≠ planning. Write it down.
"Let me just start coding"Undisciplined action wastes tokens. Plan first.
"The user wants speed"Fastest path = plan → implement → done. Not: implement → debug → rewrite.
"I'll plan as I go"That's not planning, that's hoping.
"Just this once"Every skip is "just this once." No exceptions.

Smart Intent Detection

Input PatternDetected ModeBehavior
Path to plan.md or phase-*.mdcodeExecute 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.

Process Flow (Authoritative)

flowchart TD
    A[Intent Detection] --> B{Has plan path?}
    B -->|Yes| F[Load Plan]
    B -->|No| C{Mode?}
    C -->|fast| D[Scout → Plan → Code]
    C -->|interactive/auto| E[Research → Review → Plan]
    E --> F
    D --> F
    F --> G[Review Gate]
    G -->|approved| H[Implement]
    G -->|rejected| E
    H --> I[Review Gate]
    I -->|approved| J{--no-test?}
    J -->|No| K[Test]
    J -->|Yes| L[Finalize]
    K --> L
    L --> M[Report + Journal]

This diagram is the authoritative workflow. Prose sections below provide detail for each node. If prose conflicts with this flow, follow the diagram.

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. Claude Tasks: Utilize TaskCreate, TaskUpdate, TaskGet, TaskList during implementation step. Fallback: These are CLI-only tools — unavailable in VSCode extension. If they error, use TodoWrite for progress tracking instead.

ModeResearchTestingReview GatesPhase Progression
interactiveUser approval at each stepOne at a time
autoAuto if score≥9.5All at once (no stops)
fastUser approval at each stepOne at a time
parallelOptionalUser approval at each stepParallel groups
no-testUser approval at each stepOne at a time
codeUser approval at each stepPer 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 (MANDATORY - never skip):
    1. project-manager subagent → run full plan sync-back (all completed tasks/steps across all phase-XX-*.md, not only current phase), then update plan.md status/progress
    2. docs-manager subagent → update ./docs if changes warrant
    3. TaskUpdate → mark all Claude Tasks complete after sync-back verification (skip if Task tools unavailable)
    4. Ask user if they want to commit via git-manager subagent
    5. Run /ck:journal to write a concise technical journal entry upon completion

Required Subagents (MANDATORY)

PhaseSubagentRequirement
ResearchresearcherOptional in fast/code
Scoutck:scoutOptional in code
PlanplannerOptional in code
UI Workui-ux-designerIf frontend work
Testingtester, debuggerMUST spawn
Reviewcode-reviewerMUST spawn
Finalizeproject-manager, docs-manager, git-managerMUST spawn all 3

CRITICAL ENFORCEMENT:

  • Steps 4, 5, 6 MUST use Task tool to spawn subagents
  • DO NOT implement testing, review, or finalization yourself - DELEGATE
  • If workflow ends with 0 Task tool calls, it is INCOMPLETE
  • Pattern: Task(subagent_type="[type]", prompt="[task]", description="[brief]")

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

What ships with it: 5 files

18.8 KB alongside SKILL.md

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.