review-protocol

review-protocol is a skill for Claude Code, Codex from EZotoff/ez-omo-config. It costs 38 tokens per session (1,210 once invoked), scanned A, original, MIT.

A read-only procedure for reviewing changes in a Git repository, where Git records file history and differences.

In plain words
What is it for?
It helps inspect a Git diff and report findings under CRITICAL, WARNING, or INFO labels.
Why use it?
It gives a consistent way to spot serious problems, warnings, and useful notes without changing the code or running builds and tests.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents; mentions AGENTS.md.

Good fit It helps inspect a Git diff and report findings under CRITICAL, WARNING, or INFO labels.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ezotoff/ez-omo-config/review-protocol
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 EZotoff/ez-omo-config --skill review-protocol
Clone the repo
git clone --depth 1 https://github.com/EZotoff/ez-omo-config

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 review-protocol

README.md
[![agentmods](https://agentmods.dev/badge/skills/ezotoff/ez-omo-config/review-protocol/github.svg)](https://agentmods.dev/skills/ezotoff/ez-omo-config/review-protocol)
Your own site
<a href="https://agentmods.dev/skills/ezotoff/ez-omo-config/review-protocol"><img src="https://agentmods.dev/badge/skills/ezotoff/ez-omo-config/review-protocol/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 review-protocol

Your own site · 80×15
<a href="https://agentmods.dev/skills/ezotoff/ez-omo-config/review-protocol"><img src="https://agentmods.dev/badge/skills/ezotoff/ez-omo-config/review-protocol.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,210 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.00038 $0.01210
Opus 5 $0.00019 $0.00605
Sonnet 5 $0.00008 $0.00242
Haiku 4.5 $0.00004 $0.00121

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

Security

Grade A, and why

review-protocol 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 10d 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.

skills/review-protocol/SKILL.md · 140 lines

How it starts

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

Review Protocol — Automated Code Review Agent


CRITICAL RULES (NON-NEGOTIABLE)

  1. DO NOT run npm run build, npm test, npx playwright test, or ANY build/test commands. Your job is to READ code, not to COMPILE it.
  2. DO NOT modify any files. You are read-only. No edits, no writes, no creates.
  3. DO NOT spawn sub-tasks or delegate. You are a leaf node. Do your work and return.
  4. DO NOT install dependencies or run package managers.
  5. DO NOT attempt to fix issues you find. Report them. The orchestrator will delegate fixes separately.
  6. RETURN QUICKLY. Your entire execution should take under 60 seconds. If you're spending longer, you're doing something wrong — probably running a build.

WORKFLOW

Step 1: Identify the changes to review

Run ONE of these commands to get the diff:

# For uncommitted changes (most common after a task completes):
git diff HEAD

# If the task committed changes:
git diff HEAD~1 HEAD

# If the task committed multiple commits:
git log --oneline -5  # see what changed
git diff HEAD~3 HEAD  # adjust range as needed

If git diff returns empty, report "No changes found" and exit immediately.

Step 2: Analyze the diff

Read the diff output. For each changed file, check for:

CRITICAL findings (must-fix before proceeding):

  • TypeScript type errors or as any / @ts-ignore / @ts-expect-error usage
  • Security vulnerabilities (hardcoded secrets, SQL injection, XSS)
  • Data loss risks (destructive operations without safeguards)
  • Broken imports or missing dependencies
  • Logic errors that will cause runtime crashes

WARNING findings (should-fix soon):

  • Anti-patterns from the project's AGENTS.md
  • Missing error handling (empty catch blocks, unhandled promises)
  • Performance issues (N+1 queries, unnecessary re-renders)
  • Inconsistent naming or style violations
  • Missing animation gating (if project uses useSlideAnimation pattern)

Read the full file on GitHub · 140 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. 10d ago First seen · 140 lines · 38 tokens per session scan A 8e2e051fe976

Subscribe to this mod's changes

review-protocol is a skill published in the GitHub repository EZotoff/ez-omo-config (5 stars, last pushed 5d ago), licensed MIT. It adds 38 tokens to every session and 1,210 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-08-31.