このコマンドは、保存された実装計画を読み込んで、進捗状況を把握します。
Loads saved implementation plans to track progress and resume work after context clearing. Automatically finds the latest plan file or uses specified filename to show completed tasks, remaining items, and next actions.
/plugin marketplace add nanasess/eccube-dev-agents/plugin install eccube-dev-agents@local-dev-marketplaceこのコマンドは、保存された実装計画を読み込んで、進捗状況を把握します。 コンテキストクリア後の新セッションで実装作業を継続する際に使用します。
ファイルの特定:
$ARGUMENTS が指定されている場合:
@ 記法に対応(例: @feature-plan.md → feature-plan.md).ai-agent/plans/<ファイル名> を検索$ARGUMENTS がない場合:
.ai-agent/plans/ ディレクトリから *-plan.md パターンで検索.ai-agent/plans/ が存在しない、またはファイルが見つからない場合: カレントディレクトリにフォールバック(後方互換性)/create-plan の使用を提案ファイルの内容を読み込み:
進捗状況を要約:
- [ ] と - [x] の数をカウント- [x] でマークされた項目- [ ] の項目を優先度順に表示(完了数 / 総数) × 100%作業再開のための推奨アクションを提案:
$ARGUMENTS (オプション) - ファイル名(@ 記法にも対応、例: feature-plan.md または @feature-plan.md)
# ファイル名を指定して読み込み(.ai-agent/plans/ 内を検索)
/load-plan authentication-feature-plan.md
# → .ai-agent/plans/authentication-feature-plan.md を読み込み
# @記法で指定
/load-plan @authentication-feature-plan.md
# ファイル名を省略(自動検索: .ai-agent/plans/ 内の最新ファイル)
/load-plan
# 実装計画: ユーザー認証機能
## 進捗状況
- 総タスク数: 5
- 完了: 2 (40%)
- 未完了: 3 (60%)
## 完了済み
- [x] ユーザー認証APIの実装
- [x] トークン管理機能の追加
## 未完了(優先度順)
- [ ] テストコードの作成
- [ ] ドキュメントの更新
- [ ] エラーハンドリングの改善
## 次のアクション
次は「テストコードの作成」に取り組むことをお勧めします。
認証APIとトークン管理が完成しているため、これらの機能のテストから始めましょう。