review

review is a command for Claude Code from alirezarezvani/claude-skills. It costs 8 tokens per session (295 once invoked), scanned A, original, MIT.

A local review command that runs checks on a software repository before code is pushed. It checks GitHub workflow files, Python syntax, Markdown links, and, when applicable, Python dependencies.

In plain words
What is it for?
Use it to install the required checking tools, validate workflow files, compile Python code, check README links, audit dependency lists, and summarize the results.
Why use it?
It catches formatting, configuration, syntax, broken-link, and dependency problems while changes are still local and easier to fix.

Command for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it to install the required checking tools, validate workflow files, compile Python code, check README links, audit dependency lists, and summarize the results.

Compare 6 commands from other repositories ↓
Install with agentmods
npx agentmods add commands/alirezarezvani/claude-skills/review
About the project

claude-skills is a large collection of reusable skills, commands, plugins, and supporting resources for coding agents across engineering, business, research, compliance, and productivity work. It is used by people who want agents such as Claude Code, Codex, Gemini CLI, or Cursor to follow specialized workflows. The catalogue contains selected skills and settings from the collection.

alirezarezvani/claude-skills · 25,679 stars · on GitHub · alirezarezvani.medium.com

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.

Clone the repo
git clone --depth 1 https://github.com/alirezarezvani/claude-skills

Made for: Claude Code.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/commands/alirezarezvani/claude-skills/review"><img src="https://agentmods.dev/badge/commands/alirezarezvani/claude-skills/review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 8 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 295 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.00008 $0.00295
Opus 5 $0.00004 $0.00148
Sonnet 5 $0.00002 $0.00059
Haiku 4.5 $0.00001 $0.00030

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

Security

Grade A, and why

review 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 9d 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.

Origin

Copies of this mod

3 near-identical copies found in the catalogue:

  • review — 100% identical, 0 lines differ
  • rv — 100% identical, 7 lines differ
  • review — 100% identical, 0 lines differ
.claude/commands/review.md · 34 lines

What it actually says

Perform a complete review pass:

  1. Save work in progress and ensure the working tree is clean except for intentional changes.
  2. Install tooling (only first run):
    pip install --upgrade pip
    pip install yamllint==1.35.1 check-jsonschema==0.28.4 safety==3.2.4
    npm install --global [email protected]
    
  3. Lint GitHub workflows:
    yamllint -d '{extends: default, rules: {line-length: {max: 160}}}' .github/workflows
    check-jsonschema --schema github-workflow --base-dir . .github/workflows/*.yml
    
  4. Python syntax check:
    python -m compileall marketing-skill product-team c-level-advisor engineering-team ra-qm-team
    
  5. Markdown sanity check:
    markdown-link-check README.md
    
  6. Optional dependency audit (if requirements*.txt present):
    for f in $(find . -name "requirements*.txt" 2>/dev/null); do
        safety check --full-report --file "$f"
    done
    
  7. Summarize results in the commit template's Testing section. Fix any failures before continuing.
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. 9d ago First seen · 34 lines · 8 tokens per session scan A 8a2a8cf92b8f

Subscribe to this mod's changes

review is a command published in the GitHub repository alirezarezvani/claude-skills (25,679 stars, last pushed 9d ago), licensed MIT. It adds 8 tokens to every session and 295 once invoked, about $0.0000 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.