| name | issue-management |
| description | Create and query GitHub issues. Triggers when user asks to create issues, check open issues, or plan work. |
All planning and tracking is done through GitHub issues.
Creating issues
Follow the template in .agents/resources/issue-template.md for title format, body structure, and labels.
For a single issue, create it directly with gh issue create --repo <repo>. For 2+ issues, spawn one issue-creator subagent per issue (up to 4 in parallel), passing the target repo in the task.
The agent must know the target repo from the project context — do not hardcode repo names here.
Querying issues
- List open issues:
gh issue list --repo <repo>
- Filter by label:
gh issue list --repo <repo> --label "priority: high"
- View an issue:
gh issue view <number> --repo <repo>
Priority labels
priority: critical, priority: high, priority: medium, priority: low
Category labels
enhancement, bug, refactoring, testing, documentation, code-quality