- 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>
53 lines
1.1 KiB
Markdown
53 lines
1.1 KiB
Markdown
# .claude Directory
|
|
|
|
Claude Code設定ディレクトリ
|
|
|
|
## 構造
|
|
|
|
```
|
|
.claude/
|
|
├── agents/
|
|
│ ├── specs/ # Agent仕様定義
|
|
│ ├── prompts/ # 実行プロンプト
|
|
│ └── README.md
|
|
├── commands/ # カスタムスラッシュコマンド
|
|
├── prompts/ # 汎用プロンプト
|
|
└── templates/ # テンプレート
|
|
```
|
|
|
|
## カスタムコマンド
|
|
|
|
`commands/` 配下に `*.md` ファイルを作成:
|
|
|
|
```markdown
|
|
# commands/build.md
|
|
プロジェクトをビルドして、エラーがあれば修正してください。
|
|
|
|
cargo build --release
|
|
```
|
|
|
|
使用: `/project:build`
|
|
|
|
## Agent仕様
|
|
|
|
`agents/specs/` でAgent定義:
|
|
- 役割・責任範囲
|
|
- 使用可能ツール
|
|
- エスカレーション条件
|
|
|
|
## プロンプト
|
|
|
|
`prompts/` に再利用可能プロンプト:
|
|
- コードレビュー
|
|
- リファクタリング
|
|
- テスト生成
|
|
|
|
## 使い方
|
|
|
|
```bash
|
|
# カスタムコマンド実行
|
|
/project:build
|
|
|
|
# Agent実行
|
|
miyabi agent run <agent-name> --issue <番号>
|
|
```
|