From Product Owner Agent Team for Azure DevOps
Deterministically score and rank Azure DevOps backlog items using WSJF, RICE, MoSCoW, Kano, or value-vs-effort. Use when you need a reproducible priority order with transparent math and rationale. Triggers on: prioritize backlog, rank work items, WSJF, RICE, MoSCoW, Kano, value vs effort, score backlog, priority order, backlog grooming math.
How this skill is triggered — by the user, by Claude, or both
Slash command
/Product Owner Agent Team for Azure DevOps:backlog-prioritization Provide the items (IDs + factor inputs) and the framework (WSJF/RICE/MoSCoW/Kano/value-effort).Provide the items (IDs + factor inputs) and the framework (WSJF/RICE/MoSCoW/Kano/value-effort).The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Produce a reproducible, defensible ranking of backlog items. Use the bundled script for the arithmetic so scores are consistent (LLM mental math drifts), then explain the rationale.
Produce a reproducible, defensible ranking of backlog items. Use the bundled script for the arithmetic so scores are consistent (LLM mental math drifts), then explain the rationale.
| Framework | Required factors per item |
|---|---|
| WSJF | userBusinessValue, timeCriticality, riskReductionOpportunity, jobSize (all 1–10 or Fibonacci) |
| RICE | reach, impact (0.25/0.5/1/2/3), confidence (0–1), effort (person-time) |
| MoSCoW | bucket (must/should/could/wont) + optional tiebreaker value |
| Kano | category (basic/performance/delight/indifferent) + satisfaction, dissatisfaction |
| value-effort | value (1–10), effort (1–10) |
If the user has work item IDs but no factor inputs, fetch context via the ado-work-item-ops skill first, then ask for or infer the missing factors (and mark inferred values as assumptions).
The script reads a JSON payload from stdin and prints a ranked table plus per-item scores.
echo '{ "framework": "wsjf", "items": [ ... ] }' | node ./scripts/score.mjs
See score.mjs for the exact payload shape per framework (documented at the top of the file) and the scoring formulas.
## Prioritization — <framework> (why this framework)
Scope: <IDs / query / iteration>
| Rank | ID | Title | Score | Key drivers |
|------|----|-------|-------|-------------|
### Rationale
- <item>: <what drove its rank, ties broken>
### Constraints that override raw score
- <dependency / risk / sequencing note>
### Recommended order
1. <final actionable order>
If the user wants the priority order persisted (e.g. stack rank, tags, iteration), hand off to the ado-work-item-ops skill, which enforces read → diff → approval → write. Never write without explicit approval.
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
npx claudepluginhub chrriedel/product-owner-skills --plugin Product Owner Agent Team for Azure DevOps