npx claudepluginhub hnegishi/rpi-workflow-skill --plugin rpi-workflow-skillClaude Code 用の Research -> Plan -> Implement ワークフロースキル。
このワークフローは How I Use Claude Code (Boris Tane) のアプローチを再現しています。
graph LR
Research --> Plan --> Annotation
Annotation -- "合意するまで繰り返す" --> Annotation
Annotation --> Implement
Implement --> Feedback["Feedback Loop"]
Feedback -- "修正/追加タスク" --> Implement
Feedback --> Done
research.md に記録するplan.md に実装計画を作成するclaude plugin add hnegishi/rpi-workflow-skill
Claude Code で /rpi-workflow を呼び出すか、タスクの説明をすると自動的にワークフローが開始されます。
ドキュメントは .rpi-workflow-doc/yyyy-mm-dd-{タスク名}/ に生成されます。(必要に応じてパスを変更してください)
ワークフローを開始する際に、曖昧な指示よりも具体的な要件を伝えることで、Research フェーズでの調査範囲が適切に絞られ、Plan フェーズで実用的な計画が生成されます。
/rpi-workflow
## ユーザーストーリー
- 買い物客として、商品一覧ページで条件を指定して検索できる。それにより、大量の商品から目的の商品を素早く見つけられる。
## 機能要件
- カテゴリ・価格帯・キーワードで絞り込みできる
- 検索結果をページネーションで表示する
## 非機能要件
- 検索レスポンスは 300ms 以内
.claude/agents/ にプロジェクト固有の SubAgent を追加すると、 Research や Plan の精度が更に向上します。
SubAgent の例:
| Agent | 役割 |
|---|---|
architect | システム全体の設計整合性を検証する |
database-reviewer | スキーマ設計やクエリパフォーマンスを評価する |
code-reviewer | コード品質・セキュリティ・保守性を検証する |
test-strategist | テスト戦略や網羅性を評価する |
※ Skillでも問題ないが、SubAgentのコンテキスト分離と並列実行の観点からSubAgentの方が好ましい。
skills/rpi-workflow/
├── SKILL.md # スキル定義(ワークフロー全体の流れ)
└── reference/
├── research.md # Research フェーズの参照資料
├── plan.md # Plan フェーズの参照資料
└── implement.md # Implement フェーズの参照資料
Complete collection of battle-tested Claude Code configs from an Anthropic hackathon winner - agents, skills, hooks, rules, and legacy command shims evolved over 10+ months of intensive daily use
Manus-style persistent markdown files for planning, progress tracking, and knowledge storage. Works with Claude Code, Kiro, Clawd CLI, Gemini CLI, Cursor, Continue, Hermes, and 17+ AI coding assistants. Now with Arabic, German, Spanish, and Chinese (Simplified & Traditional) support.
Complete collection of battle-tested Claude Code configs agents, skills, hooks, rules, and legacy command shims evolved over 10+ months of intensive daily use
Core skills library for Claude Code: TDD, debugging, collaboration patterns, and proven techniques
Tools to maintain and improve CLAUDE.md files - audit quality, capture session learnings, and keep project memory current.
Claude Code skills for Godot 4.x game development - GDScript patterns, interactive MCP workflows, scene design, and shaders