用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/drn/dots --skill prioritize命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | prioritize |
| description | RICE-scored backlog prioritization. Use for sprint planning, feature prioritization, or backlog grooming. |
Score and rank a list of work items using the RICE framework, then produce a prioritized backlog ready for sprint planning.
$ARGUMENTS - Required: list of items to prioritize, OR a path to a file containing them, OR "backlog" to pull from git issues/PRsIf no arguments provided, ask the user what items to prioritize.
git rev-parse --show-toplevel 2>/dev/null | grep -oE '[^/]+$' | head -1gh issue list --limit 20 --state open 2>/dev/null | head -20gh pr list --limit 10 --state open 2>/dev/null | head -10Parse the input into a list of discrete work items. Each item needs:
If $ARGUMENTS is "backlog", pull from open GitHub issues and PRs.
If fewer than 3 items, ask the user if they want to add more -- RICE works best with 5+ items to compare.
For each item, estimate:
| Factor | Scale | How to Estimate |
|---|---|---|
| Reach | Number of users/devs affected per quarter | Ask: who benefits? How many? |
| Impact | 0.25 (minimal), 0.5 (low), 1 (medium), 2 (high), 3 (massive) | Ask: how much does this move the needle? |
| Confidence | 50%, 80%, or 100% | How certain are these estimates? Use 80% as default. |
| Effort | Person-days (0.5 = half day, 1 = one day, etc.) | How long to implement, test, and ship? |
RICE Score = (Reach x Impact x Confidence) / Effort
When estimating, be conservative:
After scoring, classify each item:
Ask the user:
Apply the 15% buffer rule: reserve 15% of capacity for unexpected work. Available capacity = stated capacity x 0.85.
Allocate the 20% tech debt rule: at least 20% of sprint capacity should go to tech debt, bugs, or maintenance -- not just new features.
## Prioritized Backlog
### Sprint Capacity
- **Duration:** {N} weeks
- **Available:** {N} person-days (after 15% buffer)
- **Tech debt allocation:** {N} person-days (20%)
- **Feature allocation:** {N} person-days (80%)
### Ranked Items
| Rank | Item | RICE | R | I | C | E | MoSCoW | Fits Sprint? |
|------|------|------|---|---|---|---|--------|--------------|
| 1 | ... | ... | . | . | . | . | Must | Yes |
### Sprint Recommendation
**Include in sprint:**
{items that fit within capacity, prioritized by RICE score, Must items first}
**Deferred:**
{items that don't fit, with brief reason}
**Won't (out of scope):**
{items explicitly excluded}
### Assumptions
{list any assumptions made during estimation}
Print the backlog so the user can review and adjust scores.
If the user disagrees with any score, adjust and re-rank. The user's domain knowledge overrides model estimates.