Plan a feature or system before implementation. Use when the user says "plan this", "I want to build X", "how do I implement Y", or when /ck:brainstorm produces a spec.md. Always run before /ck:cook. Modes (pick one): --fast (simple, single-file), --hard (research + red-team + validate). Composable flag (combine with any mode): --tdd — propagates into the cook pipeline. Every phase gets Design Constraints and Quality/Testing State; ck:cook confirms optional test and quality checks per phase.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add DangQuangSE/team-development-skills --skill ck-plan --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Ck Plan?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/dangquangse-ck-plan-a50d6a3c)More formats (shields.io, HTML) on the badges page.
---
name: ck-plan
description: >-
Plan a feature or system before implementation. Use when the user says "plan this", "I want to build X", "how do I implement Y", or when /ck:brainstorm produces a spec.md. Always run before /ck:cook. Modes (pick one): --fast (simple, single-file), --hard (research + red-team + validate). Composable flag (combine with any mode): --tdd — propagates into the cook pipeline. Every phase gets Design Constraints and Quality/Testing State; ck:cook confirms optional test and quality checks per phase.
user-invocable: true
---
# ck:plan — Structured Planning Pipeline
---
### Step 0 — Scope Challenge
Before spawning any agents, detect mode and challenge scope:
```
# Scope Challenge:
# Exists? → [does this feature already exist in the codebase?]
# Minimum? → [smallest impl that satisfies requirements]
# Complexity? → [Fast | Hard] — reasons: multi-file? unfamiliar? security?
#
# Mode: [Fast | Hard]
# Test: [default | --tdd]
```
Mode auto-detection (override with explicit flag):
- **Fast** — single-file change, familiar pattern, ≤ 2 components
- **Hard** — multi-file, unfamiliar domain, security-sensitive, or ≥ 3 phases
If scope is too large: suggest splitting and **wait for user confirmation**.
If **Hard** and novel/ambiguous with no brainstorm report: "No brainstorm found. Run `/ck:brainstorm` first? [Y/n]" — if Yes, stop; if No, proceed.
If a spec file path is provided or `plans/{slug}/spec.md` exists adjacent to any plan: run a **Spec Quality Check** inline:
```
# Spec Quality Check:
# [NEEDS CLARIFICATION] remaining? → CRITICAL — resolve before continuing
# Success criteria measurable? → HIGH if vague adjectives (fast, scalable, reliable)
# User stories P1/P2/P3? → HIGH if missing
# Acceptance criteria testable? → MEDIUM if vague ("works correctly")
#
# Verdict: [PASS | WARN (list) | BLOCK (list)]
```
- **BLOCK**: surface findings, resolve before proceeding
- **WARN**: list findings, user acknowledges — then proceed
- **PASS**: continue normally
---
### Step 1 — Research (Hard only)
Spawn **2 `researcher` agents in parallel**:
- **Instance A** — role: `Primary` — recommended approach and best practices
- **Instance B** — role: `Alternative` — alternative approach and tradeoffs
```
// Researcher A (Primary): [approach] → [verdict]
// Researcher B (Alternative): [approach] → [verdict]
```
---
### Step 2 — Plan Creation
Spawn the **`planner` agent** with: feature description + mode + research reports + test flag + spec file path (if any).
- Every phase gets a `## Design Constraints` section and a `## Quality and Testing State` section (quality: not evaluated, testing: not started) so `ck:cook` can record the user's per-phase check choices and their outcomes.
- **`--tdd`**: planner adds `### Tests to Write First` to each phase, derived from spec acceptance criteria
- **Spec provided**: planner maps each phase to the P1/P2/P3 stories it covers
Agent writes:
```
plans/{slug}/
plan.md
phase-01-{name}.md
phase-02-{name}.md
...
```
---
### Step 3 — Red-Team Review (Hard only)
Spawn **`plan-reviewer`** with paths to all plan files (+ spec.md if present).
Adjudicate each finding:
- `ACCEPTED` → edit the relevant plan file immediately
- `NOTED` → append to Risks section of plan.md
- `REJECTED` → document reason
If `plan-reviewer` returns `BLOCK`: revise the flagged phase and re-run before proceeding.
---
### Step 4 — Validation + Handoff
Ask 3–5 targeted questions about the plan's riskiest points. **Wait for user answers.**
Hydrate tasks via TodoWrite, then recommend `--tdd` if spec.md exists and it's not already set.
Output the exact cook command:
```
Ready to cook:
/ck:cook [--fast | --hard] [--tdd] plans/{slug}/plan.md
```
---
## Agents
| Agent | Step | Modes |
|-----------------|------|-------|
| `researcher` | 1 | Hard (×2 parallel) |
| `planner` | 2 | All |
| `plan-reviewer` | 3 | Hard |
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!