Agent skill
task-list
[タスク] 1. Sprint計画(Milestone + Issue一括作成)
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/task-list
SKILL.md
[タスク] 1. Sprint計画(Milestone + Issue一括作成)
入力: $ARGUMENTS
- コンテキストファイル(例:
doc/input/rdd.md)
🎯 目的
- doc/input/rdd.md を根拠に、Sprint(Milestone)とタスク(Issue)を一括作成する
- 組み込みTask(TaskCreate)にも登録し、セッション中の並行・依存管理を可能にする
- GitHub と 組み込みTask の対応関係を維持する
GitHub との対応関係
Repository = プロダクト
└── Project = カンバンボード(任意)
└── Milestone = Sprint
└── Issue = タスク
共通前提(参照)
- 口調・出力規約・TDD・Docコメント等は
CLAUDE.mdに従う doc/input/rdd.mdを読み、該当する.claude/skills/*を適用- 詳細運用は
doc/guide/ai_guidelines.mdを参照
実行手順
1. RDD読み込み・Sprint計画
# RDDを読み込み、Sprint単位でタスクを設計
- 目標/非目標、技術スタック、非機能要件を確認
- MVP優先でSprintを設計(1 Sprint = 1 Milestone)
2. Milestone作成(Sprint単位)
# Milestone存在確認
gh api repos/{owner}/{repo}/milestones --jq '.[] | select(.title=="sprint-1")'
# 存在しなければ作成(⚠️ 確認あり)
gh api repos/{owner}/{repo}/milestones -f title="sprint-1" -f description="Sprint 1: {目的}"
3. Issue一括作成
# 各タスクをIssueとして作成(⚠️ 確認あり)
gh issue create \
--title "TASK-1: {タスク概要}" \
--body "## 目的
{タスクの目的}
## RDD参照
- doc/input/rdd.md §{セクション}
## 検証ゲート
\`\`\`bash
pnpm lint --fix && pnpm type-check
pnpm test
\`\`\`
## 依存
- なし(または #XX)
## 決定理由
{なぜこのタスクが必要か}" \
--milestone "sprint-1" \
--label "task"
4. 組み込みTask登録
Issue作成後、組み込みTaskにも登録する:
TaskCreate:
subject: "TASK-1: {タスク概要}"
description: "{タスクの詳細}"
activeForm: "{タスク概要}を実装中"
metadata:
issueNumber: 123
milestone: "sprint-1"
5. 一覧表示
📋 Sprint: sprint-1
┌────┬─────────────────────┬──────────┬─────────────┐
│ # │ Title │ Issue │ Status │
├────┼─────────────────────┼──────────┼─────────────┤
│ 1 │ ユーザー認証実装 │ #123 │ pending │
│ 2 │ ログイン画面作成 │ #124 │ pending │
│ 3 │ API設計 │ #125 │ pending │
└────┴─────────────────────┴──────────┴─────────────┘
次のステップ: /task-detail sprint-1
出力
GitHub
- Milestone:
sprint-{n} - Issues: タスクごとに1 Issue(ラベル:
task)
組み込みTask
- TaskCreate: 各Issueに対応するTask(metadata.issueNumber で紐づけ)
品質チェックリスト
- RDD/Architecture の整合性
- Milestone が正しく作成されている
- Issue に RDD参照・検証ゲートが含まれている
- 組み込みTask に issueNumber が設定されている
- 一覧表示で対応関係が確認できる
自己評価
- 成功自信度: (1-10)
- 一言理由: {短く理由を記載}
次のステップ
/task-detail sprint-1 # Issue詳細化 + 依存関係設定
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?