用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/asermax/claude-plugins --skill delta-summary命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | delta-summary |
| description | Display a summary table of available deltas or show recommended next deltas |
| argument-hint | [filter|next work|critical|high|medium|low|backlog] |
Display a summary table of all deltas with optional filtering by status, priority, or show recommended next deltas to work on.
Filter: $ARGUMENTS (optional)
next commandYou must load the following skills and read the following files before proceeding.
katachi:framework-core - Workflow principlesdocs/planning/DELTAS.md - Delta inventoryVerify framework is initialized:
docs/planning/ doesn't exist, suggest /katachi:init-framework firstCheck for required files:
docs/planning/DELTAS.mdIf missing, suggest /katachi:init-framework first.
Analyze $ARGUMENTS to determine which command to run:
| Input Pattern | Command | Behavior |
|---|---|---|
| (empty) | summary | Show all deltas, sorted by priority |
| "next work" or "next" or "recommended" | next --top 5 | Show top 5 recommended deltas |
| "critical" | summary --priority 1 | Show only Critical priority |
| "high" | summary --priority 2 | Show only High priority |
| "medium" | summary --priority 3 | Show only Medium priority |
| "low" | summary --priority 4 | Show only Low priority |
| "backlog" | summary --priority 5 | Show only Backlog priority |
| "ready" | summary --ready | Show only deltas ready to implement |
| Anything else | summary <filter> | Treat as status filter |
When user asks for "next work", "next", or "recommended":
python ${CLAUDE_PLUGIN_ROOT}/scripts/deltas.py next --top 5
This shows the top 5 deltas recommended to work on next, ranked by:
When user asks for "ready":
python ${CLAUDE_PLUGIN_ROOT}/scripts/deltas.py summary --ready
This shows only deltas whose dependencies are all complete, meaning they can be started immediately.
When user specifies a priority keyword:
python ${CLAUDE_PLUGIN_ROOT}/scripts/deltas.py summary --priority <level>
For any other filter:
python ${CLAUDE_PLUGIN_ROOT}/scripts/deltas.py summary $ARGUMENTS
The command outputs directly to the console:
Framework not initialized:
/katachi:init-framework firstNo matching deltas:
Invalid input:
# Show all deltas (sorted by priority)
/katachi:delta-summary
# Show recommended next deltas (top 5)
/katachi:delta-summary next work
# Show only Critical priority deltas
/katachi:delta-summary critical
# Show only High priority deltas
/katachi:delta-summary high
# Show only Spec-related deltas (status filter)
/katachi:delta-summary Spec
# Show only Implementation-related deltas
/katachi:delta-summary Implementation
# Show only deltas ready to implement (unblocked)
/katachi:delta-summary ready
# Show only "Not Started" deltas
/katachi:delta-summary "Not Started"
This is a read-only command for viewing delta status: