This skill should be used when the user asks about "github issue workflow", "organize issues with milestones", "manage github project", "issue hierarchy", "sub-issues", "milestone planning", "PR workflow", "issue triage", "git commit", "create PR", "work on issues", "autonomous issue resolution", or needs guidance on GitHub issue management, milestone organization, commit workflows, PR creation, or automated issue workflows.
Inherits all available tools
Additional assets for this skill
This skill inherits all available tools. When active, it can use any tool Claude has access to.
examples/issue-template.mdreferences/commit-workflow.mdreferences/gh-cli-patterns.mdreferences/pr-workflow.mdreferences/work-workflow.mdscripts/division_to_milestones.pyscripts/milestone_from_issues.pyscripts/move_subissues.pyscripts/set_milestone_recursive.pyThis skill provides guidance for managing GitHub issues, milestones, pull requests, and automated workflows.
GitHub supports hierarchical organization through sub-issues (tasklists):
Epic Issue (Milestone-level)
├── Feature Issue (Parent)
│ ├── Sub-issue 1 (Implementation task)
│ └── Sub-issue 2 (Implementation task)
└── Feature Issue (Parent)
└── Sub-issues...
Create sub-issues using tasklist syntax in parent issue body:
## Tasks
- [ ] #123
- [ ] #124
Milestones represent time-boxed delivery targets:
| Type | Duration | Purpose |
|---|---|---|
| Sprint | 1-2 weeks | Specific deliverables |
| Release | 1-3 months | Version targets |
| Division | Varies | Team/domain groupings |
| Label Type | Examples |
|---|---|
| Priority | P0-critical, P1-high, P2-medium |
| Type | bug, feature, chore, docs |
| Status | needs-triage, blocked, ready |
| Area | frontend, api, infra |
Use Why/What/How structure:
## Why
[Problem statement - what need does this address?]
## What
[Solution description - what will be built?]
## How
[Implementation approach]
## Acceptance Criteria
- [ ] Criterion 1
- [ ] Criterion 2
Follow conventional commit format:
<type>(<scope>): <subject>
Types: feat, fix, docs, style, refactor, test, chore
Key rules:
trunk check --ci --fixgit rebase origin/mainCloses #<number>For parallel issue work:
git worktree add -b fix/issue-<n> /tmp/repo-issue-<n> mainExecute milestone and issue operations with these uv scripts:
| Script | Usage |
|---|---|
set_milestone_recursive.py | Set milestone on all sub-issues recursively |
milestone_from_issues.py | Convert issues into new milestones |
division_to_milestones.py | Convert Division-labeled issues to milestones |
move_subissues.py | Move sub-issues between parent issues |
Run scripts with --dry-run first:
uv run scripts/set_milestone_recursive.py <milestone_url> --dry-run
uv run scripts/milestone_from_issues.py <milestone_url> --dry-run
uv run scripts/move_subissues.py <source_url> <target_url> --dry-run
For detailed procedures, consult:
references/commit-workflow.md - Detailed commit procedurereferences/pr-workflow.md - PR creation and managementreferences/work-workflow.md - Autonomous issue resolutionreferences/gh-cli-patterns.md - Common gh CLI commandsWorking examples in examples/:
examples/issue-template.md - Issue templates (bug, feature, chore)Utility scripts in scripts/:
scripts/set_milestone_recursive.py - Milestone propagationscripts/milestone_from_issues.py - Issue-to-milestone conversionscripts/division_to_milestones.py - Division label processingscripts/move_subissues.py - Sub-issue migration