一键导入
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.