ソース情報
- リポジトリ
- 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 roadmapコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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 | 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 |