plan
1
总安装量
1
周安装量
#46690
全站排名
安装命令
npx skills add https://github.com/petestewart/claude-skills --skill plan
Agent 安装分布
cursor
1
claude-code
1
Skill 文档
Implementation Plan
Transform PRD.md and specs/ into an actionable PLAN.md with phased tasks.
Workflow
1. Check Prerequisites
Look for PRD.md and specs/README.md in project root.
If PRD.md missing: Ask:
“No PRD.md found. Would you like me to:
- Create one first – Run
/prdto define requirements- Proceed without it – I’ll ask you to describe requirements directly”
If specs/README.md missing: Ask:
“No specs/ found. Would you like me to:
- Create specs first – Run
/specsto define technical approach- Proceed without them – Plan will be less precise”
Read all available docs: PRD.md, specs/README.md, and all specs/*.md files.
2. Generate PLAN.md
Create PLAN.md at project root:
# Plan: [Title from PRD]
## Overview
Brief summary of what we're building and success criteria (from PRD).
## Architecture Reference
Link to specs/README.md and summary of key architectural decisions.
## Tasks
### Phase 1: [Phase Name]
- [ ] **Task title** `[pending]`
- Spec: specs/component.md#section (if applicable)
- Scope: What this task covers
- Acceptance: How we know it's done
### Phase 2: [Phase Name]
...
## Dependencies
External dependencies or prerequisites.
## Open Questions
Unresolved questions that may affect implementation.
---
*Generated from PRD.md and specs/ on [date]*
Task generation rules:
- Create 10-25 tasks organized into logical phases
- Each task independently completable
- Reference specific spec files where applicable
- Include setup/infrastructure tasks at start
- Include validation/testing tasks throughout
- Status values:
pending|in-progress|blocked|done - Checkbox rule: Only use
[ ]checkboxes for actionable tasks that a developer or agent can complete. Never use checkboxes for questions, decisions, open items, or anything that cannot be accomplished by an agent executing code/commands.
Open in Typora: open -a Typora PLAN.md
3. Review Plan
Ask:
“I’ve created PLAN.md with [N] tasks across [M] phases. Would you like me to:
- Review the plan – Check for gaps and spec coverage
- Done – Proceed with the plan as-is”
If review requested, spawn Explore subagent:
Prompt: "Review PLAN.md against PRD.md and specs/. Check:
- Does the plan cover all requirements from PRD?
- Does each spec component have corresponding tasks?
- Are task dependencies correct?
- Are acceptance criteria testable?
Return: ð´ Critical gaps, ð¡ Missing coverage, ð¢ Well-covered areas."
Present findings. Ask user what to update. Make requested changes.
4. Next Steps
“Plan is ready. Would you like me to:
- Start implementation – Begin working on the first task
- Done – Keep the plan for manual execution”