| name | home-iterative-refinement |
| description | Build→Test→Feedback→Refineの反復改善ワークフロー。ツール開発時のフィードバックループとOSS検証を支援。 |
| disable-model-invocation | true |
Iterative Refinement
Build → Test → Feedback → Refine → Repeat
Phases
- Initial: コア機能をまず動かす。最適化は後
- Internal Test: 自分のコードベースでテスト。違和感をメモ
- User Feedback: 3つの質問で確認
- ツールとしてどうか?
- 使いやすいか?
- ユーザーとして使いたいか?
- Refinement: 優先度順に修正
- Breaking issues → 2. Noise reduction → 3. Clarity → 4. Polish
- External Validation: OSS プロジェクトで検証 (→ validate-on-oss)
Common Feedback → Action
| Feedback | Action |
|---|
| Too much noise | Strict mode, hide low-priority |
| Tables broken | Switch to bullet points |
| Need language support | Add --jp flag |
| Not actionable | Add specific suggestions |
Learnings Template
### What Didn't Work
- {feature}: {why}
### What Worked
- {feature}: {why}
### Key Insight
{one sentence}
Example: cargo-coupling
- Initial: 全 issue 表示 → 2. Feedback: "60件はノイズ" → 3. Strict mode 追加 → 4. 3件の actionable issue のみ表示
Learning: "Default to actionable, opt-in to verbose"