resonance-ops-reviewer

resonance-ops-reviewer is a skill for Claude Code from manusco/resonance. It costs 73 tokens per session (2,175 once invoked), scanned A, original, MIT.

A code-review guide for checking a proposed software change before it is merged. It looks for bugs, regressions, unsafe behavior, data problems, and integration risks, then ranks the findings from critical to minor.

In plain words
What is it for?
Use it to audit a pull request or code diff, verify that the change matches its intended scope, and identify issues that should block a merge.
Why use it?
It provides a structured review instead of relying on a quick approval or a reviewer’s personal impression.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: installed under .agents/ (shared by several agents); mentions AGENTS.md.

Part of the resonance plugin — 85 skills, 38 commands shipped together

Good fit Use it to audit a pull request or code diff, verify that the change matches its intended scope, and identify issues that should block a merge.

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

Made for: Claude Code.

Or install resonance, the plugin that ships this one along with the rest of its 85 skills, 38 commands.

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 resonance-ops-reviewer

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/manusco/resonance/reviewer"><img src="https://agentmods.dev/badge/skills/manusco/resonance/reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 73 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,175 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.00073 $0.02175
Opus 5 $0.00036 $0.01087
Sonnet 5 $0.00015 $0.00435
Haiku 4.5 $0.00007 $0.00217

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

Security

Grade A, and why

resonance-ops-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 5d 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.

.agents/skills/ops/reviewer/SKILL.md · 121 lines

How it starts

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

/resonance-ops-reviewer: audit, not approve

Role: guardian of code quality and standards. Invoked as: /review-pr (to audit incoming code against the Blocking Registry). Input: A pull request, a diff, or a "review this code" request. Output: An Atomic Review Report with findings classified by category and ranked P0-P3. Definition of Done: Every finding is classified (Product Correctness, Runtime Safety, Auth Integrity, Data Integrity, Env Robustness, Verification Quality, Maintainability). Findings are ranked by user harm, not by impressiveness. P0/P1 issues block the merge. The Blocking Registry has been checked.

You do not "LGTM." You Audit. Quality is not an act. It is a habit. You are the last line of defense. You criticize the code, never the coder.

Prerequisites (fail fast)

  • CI status is green. A failing pipeline is a blocker before the review starts.
  • The scope of the change is understood: what was this PR supposed to do?

Algorithm

Copy this checklist and tick items as you go.

  1. Search + Learn: Check 02_memory.md for prior review feedback or project-specific anti-patterns to watch for. → verify: checked.
  2. Automated Check: Verify CI status. If failing, stop. → verify: CI green.
  3. Blocking Registry Scan: Check for non-negotiable violations: any, console.log without a flag, secrets in code, TODO without a ticket number. Any hit is a P0 block. → verify: registry checked.
  4. Blueprint Applicability: When .resonance/04_systems.md contains an approved blueprint, screen the diff for changes to governed boundaries, ownership, dependency direction, trust zones, data contracts, runtime topology, or named exceptions. For a material hit, run /blueprint check and cite the affected SYS-* rules in the review. For a local change, record a one-sentence justified skip. Never invent rules when no approved baseline exists. → verify: conformance evidence or the skip reason is present.
  5. Logic Read: Understand the control flow. Check for: authorization model consistency (are role checks centralized or scattered?), data-truth duplication (same business rule in multiple places?), N+1 queries, missing error states. → verify: logic is understood, not just skimmed.
  6. Necessity Pass: After correctness and safety, inspect the diff in this order: delete or decline → reuse the codebase → standard library → native platform → installed dependency → minimum local code. Report only evidence-backed cuts. Name the symbol, what disappears, what replaces it, and the safety check. Never flag protected behavior or use line count alone. → verify: unnecessary dependencies, speculative abstractions, pass-through wrappers, duplicate helpers, and dead flexibility were checked.
  7. Classify Each Finding: Assign to a category. Rank P0-P3 within each. Complexity findings remain Maintainability findings under the canonical taxonomy. A report that leads with formatting while auth or crash risks exist is a weak report. → verify: every finding has a category and a severity.
  8. Report: Produce the Atomic Review Report with findings ordered by severity, not by file order. For material necessity findings, request /refactor and require re-review. → verify: report leads with the highest-harm findings.
  9. Self-Improvement: Log any new architectural smells or "clever" but unreadable patterns to 02_memory.md.
  10. Decide: Approve, Request Changes, or Block. Use the Completion Attestation.

Read the full file on GitHub · 121 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. 5d ago Changed · +6 lines bdd3b419a112
  2. 9d ago First seen · 115 lines · 73 tokens per session scan A 77a06fc81e7f

Subscribe to this mod's changes

resonance-ops-reviewer is a skill published in the GitHub repository manusco/resonance (37 stars, last pushed 4d ago), licensed MIT. It adds 73 tokens to every session and 2,175 once invoked, about $0.0004 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-30.