issue-resolution-reviewer

issue-resolution-reviewer is a skill for Claude Code from richfrem/agent-plugins-skills. It costs 118 tokens per session (809 once invoked), scanned A, original, MIT.

A read-only report that checks whether closed GitHub issues were genuinely resolved and whether similar problems returned afterward. GitHub issues are tracked work items such as bugs or feature requests.

In plain words
What is it for?
Use it to review closed issues marked as fixed or replaced, classify each as confirmed resolved, recurring friction, or inconclusive, and report the evidence. It does not reopen issues or change repository files.
Why use it?
It reduces the risk of treating an issue as fixed merely because it was closed. It compares the stated cause and fix with later tests, CI results, and records of recurring repository problems.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the agent-agentic-os plugin — 25 skills, 4 commands, 6 agents, 3 hooks shipped together

Good fit Use it to review closed issues marked as fixed or replaced, classify each as confirmed resolved, recurring friction, or inconclusive, and report the evidence. It does not reopen issues or change repository files.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/richfrem/agent-plugins-skills/issue-resolution-reviewer
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 richfrem/agent-plugins-skills --skill issue-resolution-reviewer
Clone the repo
git clone --depth 1 https://github.com/richfrem/agent-plugins-skills

Made for: Claude Code.

Or install agent-agentic-os, the plugin that ships this one along with the rest of its 25 skills, 4 commands, 6 agents, 3 hooks.

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 issue-resolution-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/skills/richfrem/agent-plugins-skills/issue-resolution-reviewer/github.svg)](https://agentmods.dev/skills/richfrem/agent-plugins-skills/issue-resolution-reviewer)
Your own site
<a href="https://agentmods.dev/skills/richfrem/agent-plugins-skills/issue-resolution-reviewer"><img src="https://agentmods.dev/badge/skills/richfrem/agent-plugins-skills/issue-resolution-reviewer/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 issue-resolution-reviewer

Your own site · 80×15
<a href="https://agentmods.dev/skills/richfrem/agent-plugins-skills/issue-resolution-reviewer"><img src="https://agentmods.dev/badge/skills/richfrem/agent-plugins-skills/issue-resolution-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 118 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 809 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00118 $0.00809
Opus 5 $0.00059 $0.00404
Sonnet 5 $0.00024 $0.00162
Haiku 4.5 $0.00012 $0.00081

Measured 2d ago against content hash 34fd86017c0c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

issue-resolution-reviewer 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 2d 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.

plugins/agent-agentic-os/skills/issue-resolution-reviewer/SKILL.md · 76 lines

How it starts

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

Dependencies

This skill requires Python 3.8+ and standard library only, plus the gh CLI (GitHub CLI) authenticated for this repository.


Issue Resolution Reviewer

Performs post-closure quality audits on resolved repository issues labeled resolution:fixed or resolution:superseded. This is a read-only report generator — it never mutates issue state or repository files on its own.

Execution Flow

Phase 1: Collect Closed, Resolved Issues

gh issue list --state closed --label "resolution:fixed" --json number,title,closedAt,labels
gh issue list --state closed --label "resolution:superseded" --json number,title,closedAt,labels

Phase 2: Verify Root Cause & Regression State

For each issue:

  1. Read the issue body and closing comment for the stated root cause and fix commit/PR.
  2. Check recent test runs, CI logs, and references/map-debt.md for any friction event referencing the same file/component logged after the issue's closedAt date.
  3. Classify each issue: CONFIRMED_RESOLVED, RECURRING_FRICTION, or INCONCLUSIVE (insufficient evidence either way).

Phase 3: Report — Human Gate Before Any Mutation

This skill never reopens an issue, changes a label, or creates a new issue on its own. Produce a report table (Issue # | Title | Classification | Evidence) and, for any issue classified RECURRING_FRICTION, present the specific evidence and ask the user explicitly whether to:

  • Reopen the original issue (gh issue reopen <n>), or
  • File a new root-cause consolidation issue per github-issue-logging-policy.md §3 (dedup search via gh_issue_search.py first, then gh_issue_create.py/gh_issue_comment.py in dry-run mode per that policy's staged rollout).

Read the full file on GitHub · 76 lines

Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 2d ago First seen · 76 lines · 118 tokens per session scan A 34fd86017c0c

Subscribe to this mod's changes

issue-resolution-reviewer is a skill published in the GitHub repository richfrem/agent-plugins-skills (6 stars, last pushed yesterday), licensed MIT. It adds 118 tokens to every session and 809 once invoked, about $0.0006 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-06.

Related

Other skills, from other repositories

investigate-sentry-issue

Investigate and triage a Sentry error issue.

desplega-ai/agent-swarm · 17 tokens

operating-cadence

Designs the rhythm an organization runs on — which reviews happen weekly, monthly and quarterly, what each one decides, who owns the numbers presented, and how a signal at the front line reaches the people who can act on it. Use this to set up a management operating system, fix a meeting calendar that produces no…

cbrock84/headcount · 95 tokens

clash-resolution-analyzer

Analyze BIM clash detection results and suggest resolutions. Prioritize clashes, identify patterns, assign responsibility, and track resolution status.

datadrivenconstruction/DDC_Skills_for_AI_Agents_in_Construction · 30 tokens

launchworthy

Production readiness audit that turns a demo into a real product. Built for apps shipped fast with AI coding tools (Lovable, Bolt, v0, Cursor, Claude Code). Auto-detects your stack and audits 5 domains (Frontend, Backend & Data, Auth & Security, Infrastructure, Operations), then produces a scored scorecard and a…

Wunderlandmedia/launchworthy · 161 tokens

code-review

Perform comprehensive code reviews covering bugs, style, performance, security, and best practices. Use this skill when the user mentions: review my code, check this code, code review, find bugs, improve code, refactor suggestions, security audit, performance optimization, code quality, static analysis.

KarmaloopAI/Jiva · 61 tokens

propose-issue

Use when the user asks to propose an issue, file or open a bug report, or turn a reported defect into a tracked issue. Not for fixing the defect, triaging existing issues, or reviewing PRs.

OutlineDriven/odin-claude-plugin · 48 tokens