Install
npx skillscat add shotaiuchi/dotclaude/ghwf3-plan Install via the SkillsCat registry.
About this skill
This skill creates an implementation plan document (03_PLAN.md) from a specification file (02_SPEC.md) within a GitHub workflow process. It solves the problem of translating detailed specifications into actionable implementation steps by generating structured plans with ordered tasks, file changes, dependencies, and risk assessments. Developers should use it after completing the specification phase and before beginning code review to ensure systematic implementation planning.
SKILL.md
Always respond in Japanese. Write all workflow documents (*.md) in Japanese.
/ghwf3-plan
仕様書から実装計画を作成する。
Usage
/ghwf3-plan # 新規作成
/ghwf3-plan update # 対話形式で更新
/ghwf3-plan revise # フィードバックに基づいて更新Prerequisites
ghwf2-spec完了済み02_SPEC.mdが存在
Processing
1. Load Context
- Read
state.jsonfor active work - Read
01_KICKOFF.md,02_SPEC.md - Fetch Issue with comments:
gh issue view <issue> --json body,comments - Analyze codebase structure
2. Create 03_PLAN.md
- Template:
~/.claude/templates/03_PLAN.md - Sections:
- Implementation Steps (ordered)
- File Changes
- Dependencies
- Risk Assessment
3. Commit & Push
Execute immediately without confirmation:
git add docs/wf/<work-id>/03_PLAN.md
git commit -m "docs(wf): create plan <work-id>"
git push4. Update PR & Labels
- PR チェックリスト更新
ghwf:step-3ラベル追加
5. Update State
{
"current": "ghwf3-plan",
"next": "ghwf4-review",
"last_execution": "<ISO8601>"
}