Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Abilityai/abilities --skill roadmap명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | roadmap |
| description | Query GitHub Issues for roadmap priorities and status |
| allowed-tools | Bash, Read, Write |
| user-invocable | true |
| automation | manual |
| metadata | {"version":"1.1","created":"2026-03-13T00:00:00.000Z","author":"Ability.ai","changelog":["1.1: Added epics, themes, and orphans subcommands — Epic rollup with progress bars, coverage by strategic theme, and detection of issues missing an Epic or Theme.","1.0: Initial version — queries GitHub Issues for roadmap priorities, blockers, and work status."]} |
ℹ️ 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.roadmap vX.Y — recent: <summary>. Then proceed.
Query GitHub Issues to check current priorities, blockers, and work status.
| Source | Location | Read | Write |
|---|---|---|---|
| GitHub Issues | GitHub repo | Yes | No |
| GitHub Labels | priority-p0/p1/p2/p3, type-, status- | Yes | No |
/roadmap or /roadmap status -> Show P0/P1 priorities/roadmap all -> Show all open issues by priority/roadmap blockers or /roadmap blocked -> Show blocked items/roadmap in-progress -> Show items being worked on/roadmap epics -> Epic rollup with progress bars/roadmap themes -> Coverage by strategic theme/roadmap orphans -> Issues missing Epic or Theme field/roadmap create <title> -> Create a new issueFor status (default):
gh issue list --label "priority-p0" --state open --json number,title,labels,assignees
gh issue list --label "priority-p1" --state open --json number,title,labels,assignees
For all:
gh issue list --state open --json number,title,labels,assignees --limit 50
For blockers:
gh issue list --label "status-blocked" --state open --json number,title,labels,assignees
For in-progress:
gh issue list --label "status-in-progress" --state open --json number,title,labels,assignees
Present results in a clear table format.
epics argument)# Get all issues with an Epic field set
gh issue list --state open --json number,title,labels,projectItems --limit 200
For each unique Epic value, compute:
Output as a table with progress bars:
Epic: #20 Audit Trail
████████░░░░ 67% (8/12 done)
In Progress: #42, #43
Todo: #55, #56
themes argument)gh issue list --state open --json number,title,labels --limit 200
Group by Theme field. For each theme, show:
Theme: Security (4 issues — P0: 1, P1: 2, P2: 1)
Theme: Reliability (7 issues — P1: 3, P2: 4)
Theme: UI/UX (2 issues — P2: 2)
orphans argument)Find issues missing an Epic or Theme assignment:
gh issue list --state open --json number,title,labels,projectItems --limit 200
Filter for issues where Epic or Theme project fields are empty. Output as a list for grooming.
If user runs /roadmap create <title>:
| Command | Description |
|---|---|
/roadmap | Show P0/P1 priorities |
/roadmap all | All open issues |
/roadmap blocked | Blocked items |
/roadmap in-progress | Work in progress |
/roadmap epics | Epic rollup with progress bars |
/roadmap themes | Coverage by strategic theme |
/roadmap orphans | Issues missing Epic or Theme |
/roadmap create <title> | Create new issue |