一键导入
backlog
Manage GitHub issues backlog — view, pick, or create work items
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manage GitHub issues backlog — view, pick, or create work items
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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.