用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Abilityai/abilities --skill roadmap命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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 | Strategic view of the agent backlog — open issues grouped by skill, showing which areas have the most work |
| 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 — shows the agent backlog grouped by affected skill to reveal which areas have the most work"]} |
ℹ️ 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.
Shows the agent backlog grouped by affected skill rather than by priority. Use this to understand which parts of the agent need the most work, and to choose a sprint focus area. For the day-to-day priority-ordered view, use /backlog.
| Source | Location | Read | Write | Description |
|---|---|---|---|---|
| GitHub Issues | Current repo | Yes | No | Open issues |
| GitHub Labels | skill:, priority:, status:* | Yes | No | Group and filter |
gh auth status 2>&1 | head -3
gh issue list --state open --json number,title,labels,updatedAt --limit 100
Parse the skill:* label from each issue. Group issues into buckets:
skill:<name> label presentFor each bucket, sort issues by priority (p0 → p1 → p2 → unset).
## Agent Roadmap
### skill:adjust-playbook (3 open)
| # | Title | Priority | Status |
|---|-------|----------|--------|
| 14 | Fix archive flag behavior | p0 | todo |
| 9 | Support batch adjustments | p1 | todo |
| 11 | Better breaking-change detection | p2 | todo |
### skill:work-loop (2 open)
| # | Title | Priority | Status |
|---|-------|----------|--------|
| 6 | Handle blocked issues more gracefully | p1 | todo |
| 3 | Add skill-routing by label | p1 | in-progress |
### skill:groom (1 open)
| # | Title | Priority | Status |
|---|-------|----------|--------|
| 18 | Support bulk priority assignment | p2 | todo |
### Project-level (2 open)
| # | Title | Priority | Status |
|---|-------|----------|--------|
| 1 | Add onboarding checklist to README | p2 | todo |
| 5 | Update plugin.json description | p2 | todo |
---
Total open: 8 issues across 3 skills + project-level
Tip: Run `/groom` to tag untagged issues, or `/claim` to start the highest priority item.
If there are p0 issues, note the urgency: "P0 items need immediate attention."
If a skill has many open issues, note it as a likely sprint focus.
| Error | Action |
|---|---|
| gh not authenticated | Tell user to run ! gh auth login |
| No open issues | Report "No open issues — backlog is clear" |
| No skill labels used | Suggest running /groom first |