Create and validate implementation plans (PLAN). Use when planning implementation phases, defining tasks, sequencing work, analyzing dependencies, or working on implementation-plan.md files in docs/specs/. Includes TDD phase structure and specification compliance gates.
/plugin marketplace add rsmdt/the-startup/plugin install start@the-startupThis skill is limited to using the following tools:
examples/phase-examples.mdtemplate.mdvalidation.mdCreates actionable implementation plans that break features into executable tasks following TDD principles. Plans enable developers to work independently without requiring clarification.
A plan is complete when:
Activate when:
implementation-plan.md file in docs/specs/The PLAN template is at template.md. Use this structure exactly.
To write template to spec directory:
plugins/start/skills/implementation-plan/template.mddocs/specs/[NNN]-[name]/implementation-plan.mdYour plan MUST answer these questions:
Keep plans actionable and focused:
Track logical units that produce verifiable outcomes. The TDD cycle is the execution method, not separate tracked items.
- [ ] **T1.1 Payment Entity** `[activity: domain-modeling]`
**Prime**: Read payment interface contracts `[ref: SDD/Section 4.2; lines: 145-200]`
**Test**: Entity validation rejects negative amounts; supports currency conversion; handles refunds
**Implement**: Create `src/domain/Payment.ts` with validation logic
**Validate**: Run unit tests, lint, typecheck
The checkbox tracks "Payment Entity" as a unit. Prime/Test/Implement/Validate are embedded guidance.
Every task follows red-green-refactor within this pattern:
Use these annotations in the plan:
- [ ] T1.2.1 [Task description] `[ref: SDD/Section 5; lines: 100-150]` `[activity: backend-api]`
| Metadata | Description |
|---|---|
[parallel: true] | Tasks that can run concurrently |
[component: name] | For multi-component features |
[ref: doc/section; lines: X-Y] | Links to specifications |
[activity: type] | Hint for specialist selection |
For each phase requiring definition, follow this iterative process:
[ref: ...])Ask yourself each cycle:
Every phase should include a validation task:
- [ ] **T1.3 Phase Validation** `[activity: validate]`
Run all phase tests, linting, type checking. Verify against SDD patterns and PRD acceptance criteria.
For complex phases, validation is embedded in each task's Validate step.
When implementation requires changes from the specification:
See validation.md for the complete checklist. Key gates:
[parallel: true][activity: type]After PLAN work, report:
📋 PLAN Status: [spec-id]-[name]
Phases Defined:
- Phase 1 [Name]: ✅ Complete (X tasks)
- Phase 2 [Name]: 🔄 In progress
- Phase 3 [Name]: ⏳ Pending
Task Summary:
- Total tasks: [N]
- Parallel groups: [N]
- Dependencies: [List key dependencies]
Specification Coverage:
- PRD requirements mapped: [X/Y]
- SDD components covered: [X/Y]
Next Steps:
- [What needs to happen next]
See examples/phase-examples.md for reference.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.