- Add .claude/ configuration (agents, commands, prompts, templates) - Add comprehensive documentation: - WBS.md - Work Breakdown Structure - SPRINT_PLANNING.md - 4-sprint detailed plan - OPERATION_PLAN.md - Execution procedures - PRODUCT_SPEC.md - Product requirements - PREPARATION_OPS.md - Pre-sprint checklist - Add PlantUML diagrams (wbs-diagram, gantt-chart) - Configure Miyabi (.miyabi.yml) - Set up Rust workspace structure 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
30 lines
664 B
Markdown
30 lines
664 B
Markdown
# Feature Implementation Prompt
|
|
|
|
新機能を実装してください。
|
|
|
|
## プロセス
|
|
|
|
1. **要件理解** - 仕様の確認と質問
|
|
2. **設計** - アーキテクチャ決定
|
|
3. **実装** - コード作成
|
|
4. **テスト** - ユニット/統合テスト
|
|
5. **ドキュメント** - 必要に応じて
|
|
|
|
## コーディング規約
|
|
|
|
### Rust
|
|
- `cargo fmt` でフォーマット
|
|
- `cargo clippy` 警告ゼロ
|
|
- Result型でエラーハンドリング
|
|
- 適切なドキュメントコメント
|
|
|
|
### 構造
|
|
- 単一責任の関数/構造体
|
|
- 適切な抽象化レベル
|
|
- テスト可能な設計
|
|
|
|
## 出力
|
|
|
|
- 実装コード
|
|
- テストコード
|
|
- 使用例
|