Manages Plans.md tasks and marker operations. Use when user mentions タスクを追加, Plans.md更新, 完了マーク, タスク状態変更, add task, update plans, mark complete. Do NOT load for: 実装作業, レビュー, Plans.md以外のファイル操作.
/plugin marketplace add Chachamaru127/claude-code-harness/plugin install claude-code-harness@claude-code-harness-marketplaceThis skill is limited to using the following tools:
examples/task-lifecycle.mdreferences/markers.mdPlans.md のタスク管理とマーカー運用を行うスキル。
このスキルは以下のフレーズで起動します:
このスキルは Plans.md の編集・更新を支援します。 タスクの追加、状態変更、アーカイブを一貫したフォーマットで行います。
# Plans.md - タスク管理
> **最終更新**: YYYY-MM-DD HH:MM
> **更新者**: Claude Code / PM(Cursor/PM Claude)
---
## 🔴 進行中のタスク
- [ ] タスク名 `cc:WIP`
- 詳細説明
- 関連ファイル: `path/to/file.ts`
---
## 🟡 未着手のタスク
- [ ] タスク名 `cc:TODO`
- [ ] タスク名 `pm:依頼中`(互換: cursor:依頼中)
---
## 🟢 完了タスク
- [x] タスク名 `pm:確認済` (YYYY-MM-DD)
---
## 📦 アーカイブ
<!-- 古い完了タスクはここに移動 -->
| 変更 | 実行者 | 条件 |
|---|---|---|
pm:依頼中(互換: cursor:依頼中) → cc:WIP | Claude Code | タスク着手時 |
cc:TODO → cc:WIP | Claude Code | タスク着手時 |
cc:WIP → cc:完了 | Claude Code | 作業完了時 |
cc:完了 → pm:確認済(互換: cursor:確認済) | PM | レビュー完了時 |
* → blocked | どちらでも | ブロック発生時 |
# 正しい例
- [ ] タスク名 `cc:WIP`
- [x] タスク名 `cc:完了` (2024-01-15)
# 間違った例
- [ ] タスク名 cc:WIP # バッククォートなし
- [ ] タスク名 `cc: WIP` # スペースあり
## 追加前
## 🟡 未着手のタスク
- [ ] 既存タスク `cc:TODO`
## 追加後
## 🟡 未着手のタスク
- [ ] 既存タスク `cc:TODO`
- [ ] 新規タスク `cc:TODO`
- 詳細説明(あれば)
## 変更前
- [ ] タスク名 `cc:TODO`
## 変更後
- [ ] タスク名 `cc:WIP`
## 変更前
- [ ] タスク名 `cc:WIP`
## 変更後
- [x] タスク名 `cc:完了` (2024-01-15)
完了から 7日以上経過したタスクはアーカイブセクションに移動:
## 📦 アーカイブ
### 2024年1月
- [x] タスク1 `pm:確認済` (2024-01-10)
- [x] タスク2 `pm:確認済` (2024-01-08)
Plans.md を更新する際は以下を遵守:
- [ ] 親タスク `cc:WIP`
- [x] サブタスク1
- [ ] サブタスク2
- [ ] サブタスク3
- [ ] タスク名 `blocked`
- ブロック理由: API キーの発行待ち
- 担当: @username
- 期限: 2024-01-20
- [ ] 🔥 緊急タスク `pm:依頼中`(互換: cursor:依頼中)
- [ ] ⭐ 重要タスク `cc:TODO`
- [ ] タスク `cc:TODO`
/sync-status - 現在の状態サマリーを出力/handoff-to-cursor - 完了報告時に Plans.md を自動更新/sync-status で確認大規模プロジェクトでは以下の記法をオプションで使用可能:
- [ ] T001: 認証機能 `cc:TODO`
- [ ] T002: ユーザーAPI `cc:TODO` depends:T001
- [ ] T003: 商品API `cc:TODO` [P]
- [ ] T004: 注文API `cc:TODO` depends:T001,T003
| 記法 | 意味 | 用途 |
|---|---|---|
T001: | タスクID | 参照・依存指定に利用 |
depends:ID | 依存タスク | depends:T001,T002(カンマ区切り) |
[P] | 並列可(Parallelizable) | /work 実行時に他タスクと同時実行 |
T001 (認証) ─────────────┐
↓
T003 (商品API) [P] ─────> T004 (注文API)
↑
T002 (ユーザーAPI) ─────┘
後方互換: ID/depends/[P] がなくても従来形式で問題なく動作する。
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.