feature-prioritization

feature-prioritization is a skill for Claude Code, Codex from drvoss/everything-copilot-cli. It costs 43 tokens per session (1,852 once invoked), scanned A, original, MIT.

A feature-ranking workflow that scores backlog items by expected impact, confidence in the evidence, and effort. A backlog is the list of possible work waiting to be done.

In plain words
What is it for?
Use it to choose which features should enter the next sprint and record why they were ranked that way.
Why use it?
It replaces opinion-based prioritization with a visible scoring method and keeps the reasoning auditable in SQL, a language for storing and querying structured data.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/drvoss/everything-copilot-cli/feature-prioritization
Any agent
npx skills add drvoss/everything-copilot-cli --skill feature-prioritization
Clone the repo
git clone --depth 1 https://github.com/drvoss/everything-copilot-cli

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for feature-prioritization

README.md
[![agentmods](https://agentmods.dev/badge/skills/drvoss/everything-copilot-cli/feature-prioritization.svg)](https://agentmods.dev/skills/drvoss/everything-copilot-cli/feature-prioritization)
Your own site
<a href="https://agentmods.dev/skills/drvoss/everything-copilot-cli/feature-prioritization"><img src="https://agentmods.dev/badge/skills/drvoss/everything-copilot-cli/feature-prioritization.svg" alt="Measured on agentmods" height="20"></a>
Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,852 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00043 $0.01852
Opus 5 $0.00022 $0.00926
Sonnet 5 $0.00009 $0.00370
Haiku 4.5 $0.00004 $0.00185

Measured yesterday against content hash ebca654ad9f0, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

feature-prioritization scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/product/feature-prioritization/SKILL.md · 194 lines

How it starts

The opening of the file, as written. The whole thing — 194 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Feature Prioritization

Stop arguing about what to build. Use a scoring matrix to make prioritization decisions fast, defensible, and transparent. Track everything in SQL so the decision logic is auditable.

The Matrix

Score each feature on three dimensions (1-5 scale):

Dimension 1 (Low) 3 (Medium) 5 (High)
Impact Nice-to-have, <5% of users Useful for core segment Critical path, >30% of users or major revenue
Confidence Hunch / no data 1-2 data points Validated by user research / A/B test
Effort 5 = lowest (easy) 3 = medium 1 = highest (hardest)

Score = Impact × Confidence × Effort (higher = higher priority)

Note: Effort scoring is inverted — easy things score higher because ROI is better.

Setup

CREATE TABLE features (
    id TEXT PRIMARY KEY,
    title TEXT NOT NULL,
    description TEXT,
    impact INTEGER,          -- 1-5
    confidence INTEGER,      -- 1-5
    effort INTEGER,          -- 1-5 (5=easy, 1=very hard)
    score REAL,              -- impact * confidence * effort
    status TEXT DEFAULT 'backlog',  -- backlog | in_sprint | shipped | rejected
    notes TEXT,
    created_at DATETIME DEFAULT CURRENT_TIMESTAMP
);

Workflow

Step 1: List and Describe Features

> I have the following feature requests for [product area]:
> [paste feature list or backlog items]
>
> For each feature, write a 1-sentence description of the user benefit.
> Then help me think through the scoring dimensions.

Step 2: Score Each Feature

> Let's score each feature against our prioritization matrix.
>
> For [Feature X]:
> - Impact: What % of users does this affect? Is it on the critical path to revenue?
> - Confidence: Do we have user research, data, or is this a hypothesis?
> - Effort: Engineering complexity estimate (S/M/L → 5/3/1)
>
> Challenge my assumptions if something seems over- or under-valued.

Alternative Frameworks

Read the full file on GitHub · 194 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 194 lines · 43 tokens per session scan A ebca654ad9f0

Subscribe to this mod's changes

feature-prioritization is a skill published in the GitHub repository drvoss/everything-copilot-cli (45 stars, last pushed 8d ago), licensed MIT. It adds 43 tokens to every session and 1,852 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

speckit-workflow

Manage and run Spec Kit automation workflows via specify workflow. USE FOR: running a workflow by ID or local YAML, resuming a paused/failed run, checking run status, listing/installing/removing workflows, searching the workflow catalog, showing a workflow step graph. DO NOT USE FOR: extensions (use…

github/spec-kit-copilot · 93 tokens

omc-ado-sprint

Sprint planning and iteration management for Azure DevOps projects. WHEN: User wants to plan sprints, manage iterations, check team capacity, groom backlogs, or assign work to sprints. DO NOT USE FOR: Work item triage (use omc-ado-triage), PR reviews (use omc-ado-review), pipeline management, or non-ADO projects.

RobinNorberg/oh-my-copilot · 83 tokens

omc-ado-triage

Azure DevOps work item triage — surfaces untriaged items, active work, open PRs, pipeline failures, and security alerts. WHEN: User wants to check ADO board status, triage work items, see pipeline health, review open PRs, or get a project health overview. DO NOT USE FOR: Sprint planning (use omc-ado-sprint), PR code…

RobinNorberg/oh-my-copilot · 114 tokens

omc-ado-setup

Configure Azure DevOps integration for the current project. WHEN: User wants to set up ADO integration, connect a project to Azure DevOps, configure .omg/config.json for ADO, or troubleshoot ADO connection issues. DO NOT USE FOR: Work item triage (use omc-ado-triage), sprint planning (use omc-ado-sprint), PR review…

RobinNorberg/oh-my-copilot · 105 tokens

omc-gh-project

GitHub Projects (v2) board management — list items, update status, manage iterations, and add issues/PRs to projects. WHEN: User wants to manage project boards, move cards between statuses, check project progress, or assign items to iterations. DO NOT USE FOR: Issue triage (use omc-gh-triage), PR review (use…

RobinNorberg/oh-my-copilot · 109 tokens

omc-gh-setup

Configure GitHub integration for the current project. WHEN: User wants to set up GitHub integration, connect a project to GitHub, configure .omg/config.json for GitHub, or troubleshoot GitHub connection issues. DO NOT USE FOR: Issue triage (use omc-gh-triage), project board management (use omc-gh-project), PR review…

RobinNorberg/oh-my-copilot · 100 tokens