用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Abilityai/abilities --skill claim命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | claim |
| description | Claim the next issue from the backlog — picks highest priority todo, moves it to in-progress |
| argument-hint | [issue-number] |
| allowed-tools | Bash, Read |
| user-invocable | true |
| metadata | {"version":"1.0","created":"2026-04-28T00:00:00.000Z","author":"Ability.ai","changelog":["1.0: Initial version — claims the highest-priority todo from the GitHub Issues backlog and moves it to in-progress"]} |
ℹ️ 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.claim vX.Y — recent: <summary>. Then proceed.
Select the next issue from the GitHub Issues backlog and mark it as in-progress.
| Source | Location | Read | Write | Description |
|---|---|---|---|---|
| GitHub Issues | Current repo | Yes | Yes | Task backlog |
| GitHub Labels | status:, priority:, skill:* | Yes | Yes | Update status |
gh CLI installed and authenticated (gh auth status)/backlog to check/create)gh issue list --label "status:in-progress" --state open --json number,title --limit 1
If an issue is already in-progress, report it and ask:
If specific issue number provided ($ARGUMENTS):
gh issue view $ARGUMENTS --json number,title,body,labels,state
Verify it exists and is open.
If no argument — find highest priority todo:
# Try P0 first
gh issue list --label "priority:p0" --label "status:todo" --state open --json number,title,body,labels --limit 1
# If none, try P1
gh issue list --label "priority:p1" --label "status:todo" --state open --json number,title,body,labels --limit 1
# If none, try P2
gh issue list --label "priority:p2" --label "status:todo" --state open --json number,title,body,labels --limit 1
# If none, try any status:todo
gh issue list --label "status:todo" --state open --json number,title,body,labels --limit 1
gh issue edit $ISSUE_NUMBER --remove-label "status:todo" --add-label "status:in-progress"
gh issue comment $ISSUE_NUMBER --body "Claimed — starting work."
Display the full issue. If a skill:* label is present, surface it prominently:
## Claimed: #$NUMBER — $TITLE
**Priority:** $PRIORITY
**Skill scope:** $SKILL_LABEL → open `.claude/skills/$SKILL_NAME/SKILL.md`
### Requirements
$ISSUE_BODY
---
Next steps:
- Run `/autoplan` to analyze the change before implementing
- Or run `/adjust-playbook $SKILL_NAME` / `/create-playbook` directly
- When done, run `/commit` to close this issue
If no skill:* label present, note: "No skill tag — run /groom to tag this issue, or proceed with /autoplan."
status:in-progress| Error | Action |
|---|---|
| No open issues | Report "Backlog is empty" |
| Issue not found | Report issue number not found |
| Already in-progress | Ask user how to proceed |
| Label update fails | Report error, check permissions |