with one click
backlog
Manage GitHub issues backlog — view, pick, or create work items
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Manage GitHub issues backlog — view, pick, or create work items
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Guided refactoring with before/after validation
Check project health — environment, dependencies, tools, and configuration
Guided first-session onboarding — helps you go from zero to your first plan and issue
Create a structured implementation plan in tasks/todo.md with confidence assessment
Summarize current progress, commit working state, and update task tracking
Generate or update a PROJECT_INDEX.md for fast session orientation
| name | backlog |
| description | Manage GitHub issues backlog — view, pick, or create work items |
| argument-hint | [show|new|pick #N|close #N] |
| user-invocable | true |
| allowed-tools | Read, Write, Edit, Bash(gh *), Bash(git checkout*), Bash(git branch*), Bash(git status*) |
Manage the GitHub issues backlog. Bridge between GitHub Issues and local task management.
Parse $ARGUMENTS to determine the action:
show (default — when no argument or show)gh issue list --state open --limit 20 to get open issues.P0-critical, P1-high, P2-medium, P3-low, unlabeled).## Open Issues
### P0 — Critical
- #12 Fix auth token expiration (bug, in-progress)
### P1 — High
- #8 Add rate limiting to API (feature, ready)
- #11 Database migration fails on empty tables (bug, ready)
### P2 — Medium
- #3 Refactor config loader (refactor, needs-triage)
### Unprioritized
- #14 Update README examples (task)
**Total**: 5 open issues
newCreate a new GitHub issue interactively:
gh issue create --title "..." --body "..." --label "type,priority,needs-triage"pick #NStart working on issue #N:
gh issue view N to get the issue details.git checkout -b <type>/<N>-<short-title> (derive type from label, slugify the title).in-progress label, remove ready label: gh issue edit N --add-label "in-progress" --remove-label "ready"tasks/todo.md as a plan.close #NClose issue #N:
gh issue view N to get context.gh issue comment N --body "..."gh issue close N --reason completedin-progress label if present.gh is not available or not authenticated, say so and suggest gh auth login.pick, always verify there are no uncommitted changes before creating a branch.pick, use the branch naming convention: <type>/<issue-number>-<short-slug> (e.g., feat/8-rate-limiting, fix/12-auth-token).tasks/todo.md as the working plan — issues are the backlog, todo.md is the active session plan.