タスクを細かい単位に分割して GitHub Issue を作成する。「Issue 作成」「Issue を作って」「タスクを Issue に」「Issue 追加」「チケット作成」「Issue を切る」「タスクを分割して Issue」などで起動。実装可能な粒度にタスクを分割して複数 Issue を生成。
Breaks down tasks into implementable units and creates multiple GitHub Issues using the CLI. Triggered by phrases like "create issues" or "split tasks into issues" to generate 1-2 hour work units with dependencies.
/plugin marketplace add shiiman/claude-code-plugins/plugin install shiiman-git@shiiman-claude-code-pluginsThis skill is limited to using the following tools:
タスクを細かい単位に分割して GitHub Issue を作成します。
ユーザーから作成したいタスクの概要を聞く。
タスクを実装可能な粒度に分割:
タスク分割のルール:
分割した Issue 一覧をユーザーに提示して確認:
以下の Issue を作成します:
1. [機能A] 基本実装
- 説明: ...
- ラベル: enhancement
2. [機能A] テスト追加
- 説明: ...
- ラベル: enhancement
- 依存: #1
3. [機能A] ドキュメント更新
- 説明: ...
- ラベル: documentation
- 依存: #1
よろしいですか?
承認後、gh issue create で各 Issue を作成。
コマンドテンプレート:
gh issue create \
--title "[{scope}] {title}" \
--body "## 概要
{description}
## タスク
- [ ] {task1}
- [ ] {task2}
- [ ] {task3}
## 完了条件
- {condition1}
- {condition2}
## 依存関係
{dependencies または「なし」}
" \
--label "{labels}"
作成した Issue の一覧を報告:
以下の Issue を作成しました:
| # | タイトル | ラベル |
|---|----------|--------|
| #10 | [機能A] 基本実装 | enhancement |
| #11 | [機能A] テスト追加 | enhancement |
| #12 | [機能A] ドキュメント更新 | documentation |
推奨作業順序: #10 → #11 → #12
[{scope}] {title}
| 内容 | ラベル |
|---|---|
| 新機能 | enhancement |
| バグ修正 | bug |
| テスト | enhancement |
| ドキュメント | documentation |
| リファクタリング | improvement |
This skill should be used when the user asks to "create a hookify rule", "write a hook rule", "configure hookify", "add a hookify rule", or needs guidance on hookify rule syntax and patterns.