用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Abilityai/abilities --skill backlog命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | backlog |
| description | Show current GitHub Issues backlog — what's in progress, what's next, priorities |
| argument-hint | [all|in-progress|blocked] |
| allowed-tools | Bash, Read |
| user-invocable | true |
| metadata | {"version":"1.1","created":"2026-04-14T00:00:00.000Z","author":"Ability.ai","changelog":["1.1: Add error handling and prerequisite checks","1.0: Initial version — priority-ordered view of open GitHub Issues by status and priority"]} |
ℹ️ First, set expectations: before anything else, print one short line with this skill's version and its most recent change — the top entry of
metadata.changelogabove — e.g.backlog vX.Y — recent: <summary>. Then proceed.
View the agent's task backlog from GitHub Issues.
| Source | Location | Read | Write | Description |
|---|---|---|---|---|
| GitHub Issues | Current repo | Yes | No | Task backlog |
| GitHub Labels | status:, priority: | Yes | No | Status and priority |
/backlog or /backlog status → Show overview (in-progress + next up)/backlog all → Show all open issues by priority/backlog in-progress → Show only in-progress items/backlog blocked → Show blocked items/backlog p0 or /backlog p1 → Show specific prioritygh auth status 2>&1 | head -3
If not authenticated, tell user to run ! gh auth login.
gh label list --json name --jq '.[].name' | grep -E '^(status:|priority:)' | sort
If missing required labels, offer to create them:
gh label create "status:todo" --color "0E8A16" --description "Ready to work"
gh label create "status:in-progress" --color "FBCA04" --description "Currently working"
gh label create "status:blocked" --color "D93F0B" --description "Waiting on something"
gh label create "status:done" --color "6E5494" --description "Finished"
gh label create "priority:p0" --color "B60205" --description "Do now"
gh label create "priority:p1" --color "D93F0B" --description "Do soon"
gh label create "priority:p2" --color "FBCA04" --description "Do eventually"
For overview (default):
# In-progress
gh issue list --label "status:in-progress" --state open --json number,title,labels,assignees,updatedAt
# Next up (P0 todos)
gh issue list --label "priority:p0" --label "status:todo" --state open --json number,title,labels,assignees
# P1 todos
gh issue list --label "priority:p1" --label "status:todo" --state open --json number,title,labels,assignees --limit 5
For all:
gh issue list --state open --json number,title,labels,assignees,updatedAt --limit 50
For in-progress:
gh issue list --label "status:in-progress" --state open --json number,title,labels,body,assignees,updatedAt
For blocked:
gh issue list --label "status:blocked" --state open --json number,title,labels,body,assignees
Present results in a clear format:
## Backlog Overview
### In Progress (1)
| # | Title | Priority | Updated |
|---|-------|----------|---------|
| 42 | Implement feature X | p1 | 2h ago |
### Next Up — P0 (2)
| # | Title |
|---|-------|
| 45 | Critical bug fix |
| 46 | Urgent deploy |
### Queued — P1 (3)
| # | Title |
|---|-------|
| 48 | Add new endpoint |
| 49 | Refactor auth |
| 50 | Update docs |
**Total open: 12 issues**
View full backlog: [Issues →](https://github.com/owner/repo/issues)
| Error | Action |
|---|---|
| gh not authenticated | Tell user to run ! gh auth login |
| Not in a git repo | Report "Not in a GitHub repository" |
| No labels configured | Offer to create them (show commands) |
| API rate limited | Report error, suggest waiting |