タスク・サブタスクの管理スキル。ローカルファイルとGitHub Issueの2つのバックエンドをサポート。タスクの作成・更新・一覧表示・ステータス管理を行う。
From aidlcnpx claudepluginhub tatematsu-k/ai-development-skills --plugin aidlcThis skill uses the workspace's default tool permissions.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Enables AI agents to execute x402 payments with per-task budgets, spending controls, and non-custodial wallets via MCP tools. Use when agents pay for APIs, services, or other agents.
サブタスク(=PR単位)の管理を行う。バックエンドとしてローカルファイルまたはGitHub Issueを選択可能。
初回使用時にユーザーに確認する:
タスク管理の方法を選んでください:
- ローカルファイル —
aidlc-docs/tasks/にMarkdownで管理- GitHub Issue — GitHub Issueとして管理 (gh CLI使用)
選択結果は aidlc-docs/tasks/config.json に保存:
{
"backend": "local" | "github",
"github_repo": "owner/repo",
"parent_issue": 123
}
aidlc-docs/tasks/YYYY-MM-DD-<feature>-tasks.md:
# [機能名] タスクリスト
| # | サブタスク | PR分類 | ステータス | PR |
|---|-----------|--------|-----------|-----|
| 1 | サーバー: API追加 | server | todo | - |
| 2 | フロント: API利用画面 | frontend | todo | - |
| 3 | バッチ: データ移行 | batch | todo | - |
todo — 未着手in_progress — 作業中in_review — PRレビュー待ちdone — 完了タスクのステータスが変わるたびにファイルを更新し、コミットする。
機能全体を管理する親Issueを作成:
gh issue create \
--title "[Feature] <機能名>" \
--body "## サブタスク\n\n- [ ] #<sub1>\n- [ ] #<sub2>" \
--label "feature"
PR単位でIssueを作成:
gh issue create \
--title "[Subtask] <サブタスク名>" \
--body "Parent: #<parent_issue>\n\n## 概要\n...\n\n## 完了条件\n..." \
--label "subtask"
# 作業開始
gh issue edit <number> --add-label "in-progress" --remove-label "todo"
# PR作成時
gh issue edit <number> --add-label "in-review" --remove-label "in-progress"
# 完了時 (PRマージ後)
gh issue close <number>
ローカル: タスクリストファイルを読んで表示
GitHub: gh issue list --label "subtask"
ステータスが todo の最初のタスクを返す。
進捗: 2/5 完了 (40%)
├── ✅ サーバー: API追加 (#PR-1)
├── ✅ フロント: API利用画面 (#PR-2)
├── 🔄 バッチ: データ移行 (作業中)
├── ⬜ テスト: E2Eテスト追加
└── ⬜ ドキュメント更新