소스 정보
- 저장소
- Abilityai/abilities
- 최근 소스 활동
- 2026년 6월 18일 13:37
- 감지된 SKILL.md 언어
- 영어
- 스타
- 11
- 포크
- 3
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Abilityai/abilities --skill backlog명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Generate an agent-specific `/update-dashboard` skill that keeps `dashboard.yaml` current for Trinity. Analyzes the agent's purpose and data sources, proposes metrics, gets user approval, then scaffolds a schedulable skill.
Modify an existing playbook based on conversation context or explicit instructions. Use when user wants to update, fix, extend, or refine a playbook they already have.
Create a new skill or playbook. Guides through requirements gathering and generates the appropriate template based on complexity.
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 |