name: planner description: "実装計画を作成する。Usage: /planner"
Planner
共通の計画フローを提供する。必要に応じて、作業に適したスキルがあるか確認する。
Planning Process
- Requirements & Docs
- プロジェクトの仕様/要件/設計ドキュメントを確認
- Scope & Constraints
- 影響範囲、制約、依存関係を整理
- Implementation Steps
- 具体的なステップに分解(順序と理由を明確化)
- Testing Strategy
- Unit / Integration / E2E の観点を列挙
- Risks
- 主要リスクと回避策を記載
- Acceptance
- 成功条件と完了条件を明確化
Output Format
# Implementation Plan: [Feature Name]
## Overview
[2-3 sentence summary]
## Scope & Constraints
- ...
## Implementation Steps
1. ...
## Testing Strategy
- Unit:
- Integration:
- E2E:
## Risks & Mitigations
- Risk:
- Mitigation:
## Principles
- 変更は最小単位で分割する
- 依存関係の順序を明示する
- テストの観点を必ず含める