chore: Initialize Miyabi project with full planning
- 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>
This commit is contained in:
parent
0eb74b7af1
commit
00d5d4d4e9
53 changed files with 6950 additions and 0 deletions
7
.claude/commands/build.md
Normal file
7
.claude/commands/build.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
プロジェクトをビルドしてください。
|
||||
|
||||
```bash
|
||||
cargo build --release
|
||||
```
|
||||
|
||||
エラーがあれば修正してください。
|
||||
8
.claude/commands/lint.md
Normal file
8
.claude/commands/lint.md
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
Lintを実行してコード品質をチェックしてください。
|
||||
|
||||
```bash
|
||||
cargo clippy --all-targets -- -D warnings
|
||||
cargo fmt --all --check
|
||||
```
|
||||
|
||||
警告やエラーがあれば修正してください。
|
||||
14
.claude/commands/review.md
Normal file
14
.claude/commands/review.md
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
現在の変更をコードレビューしてください。
|
||||
|
||||
```bash
|
||||
git diff
|
||||
```
|
||||
|
||||
以下の観点でレビュー:
|
||||
- コード品質
|
||||
- パフォーマンス
|
||||
- セキュリティ
|
||||
- エラーハンドリング
|
||||
- テストカバレッジ
|
||||
|
||||
改善点があれば提案してください。
|
||||
11
.claude/commands/status.md
Normal file
11
.claude/commands/status.md
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
プロジェクトの状態を確認してください。
|
||||
|
||||
1. Gitステータス
|
||||
2. Miyabiステータス
|
||||
3. 未完了のTODO
|
||||
4. 最近のコミット
|
||||
|
||||
```bash
|
||||
git status
|
||||
miyabi status
|
||||
```
|
||||
7
.claude/commands/test.md
Normal file
7
.claude/commands/test.md
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
全てのテストを実行してください。
|
||||
|
||||
```bash
|
||||
cargo test --all
|
||||
```
|
||||
|
||||
失敗したテストがあれば原因を分析し、修正してください。
|
||||
Loading…
Add table
Add a link
Reference in a new issue