ワンクリックで
plan-task
Break down a GitHub issue into sub-issues with acceptance criteria, then create and link them.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Break down a GitHub issue into sub-issues with acceptance criteria, then create and link them.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Set up development for one or more issues using git worktrees and tmux.
Create a git commit
Verify implementation completeness against requirements after finishing a task
| name | plan-task |
| description | Break down a GitHub issue into sub-issues with acceptance criteria, then create and link them. |
Break down a GitHub issue into manageable sub-issues.
Fetch the issue details:
gh issue view {{ARG1}} to get the issue descriptionUnderstand:
Use the Task tool with subagent_type=Explore to:
Create sub-issues following this pattern:
No cross-references: Do not include issue numbers (#NNN), relative references (Sub-Issue N, from the proto issue), dependency sections (Blocked by:, Depends on:, Part of:), or inline mentions of other issues. Write each description as if it were the only issue — describe what to do and where, not which other issue it relates to. GitHub's native sub-issue hierarchy handles all linking.
Before creating any issues, use the AskUserQuestion tool to confirm:
If user approves:
gh issue create \
--title "..." \
--body "..." \
--assignee "@me"
CRITICAL: After all issues are created, link them using the bundled script:
org=$(gh repo view --json owner -q '.owner.login')
repo=$(gh repo view --json name -q '.name')
${CLAUDE_PLUGIN_ROOT}/bin/add-sub-issue-to-issue.sh "$org" "$repo" {{ARG1}} <sub-issue-number>
Provide:
DO NOT include any form of cross-referencing in issue titles, descriptions, or comments:
#NNN)Sub-Issue N, from the proto issue, as defined in the parent)Blocked by:, Depends on:, Part of:, Related to:)once X is merged, generated from Y)The add-sub-issue-to-issue.sh script creates GitHub's native sub-issue links, which are the single source of truth for hierarchy. The project board tracks dependencies visually. Write each issue description as if it were the only issue — describe what to do and where, not which other issue it relates to.