reprioritize

reprioritize is a skill for Claude Code from rjroy/vibe-garden. It costs 54 tokens per session (1,867 once invoked), scanned A, original, MIT.

A reprioritization tool that compares the current codebase with open issue files and recommends changes to their priority or status. Priority indicates urgency, while status indicates whether an issue is still active.

In plain words
What is it for?
Use it to scan open issues in .lore/work/issues/, compare them with the code, and update their priority or status after approval.
Why use it?
It helps keep the issue list accurate when code changes make an issue less relevant, already solved, more urgent, or easier to complete.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the compass-rose plugin — 4 skills shipped together

Good fit Use it to scan open issues in .lore/work/issues/, compare them with the code, and update their priority or status after approval.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rjroy/vibe-garden/reprioritize
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.

Any agent
npx skills add rjroy/vibe-garden --skill reprioritize
Clone the repo
git clone --depth 1 https://github.com/rjroy/vibe-garden

Made for: Claude Code.

Or install compass-rose, the plugin that ships this one along with the rest of its 4 skills.

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 reprioritize

README.md
[![agentmods](https://agentmods.dev/badge/skills/rjroy/vibe-garden/reprioritize/github.svg)](https://agentmods.dev/skills/rjroy/vibe-garden/reprioritize)
Your own site
<a href="https://agentmods.dev/skills/rjroy/vibe-garden/reprioritize"><img src="https://agentmods.dev/badge/skills/rjroy/vibe-garden/reprioritize/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for reprioritize

Your own site · 80×15
<a href="https://agentmods.dev/skills/rjroy/vibe-garden/reprioritize"><img src="https://agentmods.dev/badge/skills/rjroy/vibe-garden/reprioritize.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 54 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,867 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00054 $0.01867
Opus 5 $0.00027 $0.00933
Sonnet 5 $0.00011 $0.00373
Haiku 4.5 $0.00005 $0.00187

Measured 12d ago against content hash 8ecb0ba6e8fa, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

reprioritize 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 12d ago.

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.

compass-rose/skills/reprioritize/SKILL.md · 255 lines

How it starts

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

Reprioritize Mode

You are now in Reprioritize Mode. Your role is to analyze the current codebase state against local issue files and provide data-driven priority change recommendations. You identify issues that may be resolved, outdated, more urgent, or more feasible based on recent code changes.

Your Focus

  • Issue reading: Load all open issues from .lore/work/issues/*.html
  • Codebase analysis: Spawn codebase-scanner agent to assess relevance
  • Recommendation presentation: Show priority/status changes with evidence-based rationale
  • Meta tag updates: Apply approved changes directly to the HTML files

Workflow

1. Read All Open Issues

Use Glob to find all HTML files under .lore/work/issues/:

find .lore/work/issues -name "*.html" 2>/dev/null

For each file found, use Read to extract the meta tags and body content. The relevant tags are:

<meta name="title" content="...">
<meta name="priority" content="...">
<meta name="size" content="...">
<meta name="status" content="...">
<meta name="date" content="...">

Filter to only files where <meta name="status" content="open">.

If no open issues exist:

No open issues found in .lore/work/issues/.

Nothing to reprioritize.

Stop here.

If a large set is detected (>50 open issues):

Large backlog detected: [N] open issues to analyze.

This may take 5-10 minutes. Continue? (y/n)

Wait for confirmation before proceeding.

2. Spawn Codebase Scanner Agent

Build a JSON array from the parsed issue files and pass it to the codebase-scanner agent:

Agent Input Format:

{
  "items": [
    {
      "filepath": ".lore/work/issues/fix-login-timeout.html",
      "title": "Fix login timeout",
      "body": "Users experiencing timeouts after 30 seconds...",
      "priority": "P1",
      "size": "M",
      "status": "open",
      "date": "2026-05-01"
    }
  ]
}

Agent Invocation:

You are the codebase-scanner agent. Analyze the codebase and assess the relevance of these local issues:

[JSON data]

Follow the codebase-scanner agent protocol defined in compass-rose/agents/codebase-scanner.md.

Explore the codebase structure, check recent git activity, and analyze each issue to determine if:
- Feature already exists (recommend status: resolved)
- Issue is outdated or superseded (recommend lowering priority)
- Issue is more urgent due to recent changes (recommend raising priority)
- Issue is more feasible due to completed prerequisites (recommend raising priority or status: ready)
- Issue remains valid as-is (no change)

Return a structured markdown report with recommendations, confidence levels, and codebase evidence.

Read the full file on GitHub · 255 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. 12d ago First seen · 255 lines · 54 tokens per session scan A 8ecb0ba6e8fa

Subscribe to this mod's changes

reprioritize is a skill published in the GitHub repository rjroy/vibe-garden (6 stars, last pushed 2mo ago), licensed MIT. It adds 54 tokens to every session and 1,867 once invoked, about $0.0003 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-08-31.

Related

Other skills, from other repositories

init-rpm

Project setup and verification. First run creates rpm context for a project. Repeat runs verify that an existing rpm setup matches the latest expected layout and apply safe migrations.

dppdppd/rpm · 48 tokens

backlog

Manage the rpm backlog (long-term project tasks in docs/rpm/future/tasks.org — distinct from Claude's native TaskCreate list, which is session-scoped). Add, list, review, postpone, or complete entries. TRIGGER on natural-language backlog operations — phrasings like "backlog X", "add X to backlog", "add to backlog"…

dppdppd/rpm · 156 tokens

recursive-spine-digest

Use when sweeping all recursive-spine-conforming repos for tracking health — aging deferrals (oldest first), stalled milestones, in-flight by lane, assigned-but-untouched issues, and debts named in closing comments but never filed, plus seedling pollen that never transplanted (hive repos). Reports honest denominators…

slopstopper/recursive-spine · 82 tokens

recursive-spine-bootstrap

Use when installing the recursive-spine tracking convention onto a repo — interviews for modules and dialect, then stamps labels, issue/PR templates, a CLAUDE.md/AGENTS.md tracking section, and cross-project board membership. Idempotent; degrades loudly on missing gh scopes; offers (never forces) plumb-line and…

slopstopper/recursive-spine · 76 tokens

recursive-spine-nudge

Use after a recursive-spine-digest sweep to select and deliver system-initiated nudges — 0–3 conversation-starters pushed to the owner about what is unblocked, aging, stalled, or newly connected. Every nudge ends in a question; the skill proposes conversations, never executes work.

slopstopper/recursive-spine · 68 tokens

recursive-spine-method

Use when a builder wants to learn or be reminded of the recursive-spine tracking convention — where work state lives (GitHub issues+milestones, never prose ledgers), the five principles, the module system, and how to design a repo's dialect. Pure knowledge; takes no actions.

slopstopper/recursive-spine · 64 tokens