Breaks a plan into independent GitHub issues with titles, dependencies, acceptance criteria, and testing notes; reviews draft with user before creating via gh CLI.
From agentic-dev-teamnpx claudepluginhub bdfinst/agentic-dev-team[plan file path]Break an implementation plan into GitHub issues that can be worked independently.
If a path is provided in arguments, read that file. Otherwise, look for the most recent plan in:
memory/ directory (phase progress files)plans/ directoryArguments: $ARGUMENTS
If no plan is found, ask the user to point you to one.
Read the plan and identify:
For each unit of work, draft an issue with:
Present the issue list as a numbered summary:
1. [Title] — [one-line description] (depends on: none)
2. [Title] — [one-line description] (depends on: #1)
3. [Title] — [one-line description] (depends on: #1)
...
Ask: "Does this breakdown look right? Should any issues be merged or split?"
Wait for approval before creating.
Create each issue using gh issue create. After creating all issues, update issue bodies to cross-reference actual issue numbers for dependencies.
gh issue create --title "Issue title" --body "$(cat <<'EOF'
## What to Build
[Behavior description — what this slice delivers end-to-end]
## Depends On
- #<number>: [brief reason]
## Acceptance Criteria
- [ ] Criterion 1
- [ ] Criterion 2
- [ ] All tests pass
## Architectural Context
[Relevant decisions from the plan that apply to this issue]
## Testing Approach
[What to test and how — behavior-level, not implementation-level]
EOF
)"
List all created issue URLs with their titles. Note the dependency graph.