workflow-code-review

workflow-code-review is a skill for Claude Code, Codex from subhansh-dev/agent-maxxing. It costs 17 tokens per session (612 once invoked), scanned A, original, MIT.

A pre-merge process for examining code changes from several angles, including correctness, security, cleanup, and runtime behaviour. It reviews the change against recent history and a final checklist.

In plain words
What is it for?
Use it to review a branch or pull request before merging, with focused checks for correctness, security, reuse, simplicity, efficiency, and actual runtime behaviour.
Why use it?
It helps catch bugs, security weaknesses, unnecessary complexity, and behaviour changes before code is merged. Running the application adds evidence beyond reading the diff alone.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to review a branch or pull request before merging, with focused checks for correctness, security, reuse, simplicity, efficiency, and actual runtime behaviour.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/subhansh-dev/agent-maxxing/workflow-code-review
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 subhansh-dev/agent-maxxing --skill workflow-code-review
Clone the repo
git clone --depth 1 https://github.com/subhansh-dev/agent-maxxing

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 workflow-code-review

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/subhansh-dev/agent-maxxing/workflow-code-review"><img src="https://agentmods.dev/badge/skills/subhansh-dev/agent-maxxing/workflow-code-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 17 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 612 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.00017 $0.00612
Opus 5 $0.00009 $0.00306
Sonnet 5 $0.00003 $0.00122
Haiku 4.5 $0.00002 $0.00061

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

Security

Grade A, and why

workflow-code-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 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.

examples/workflow-code-review/SKILL.md · 92 lines

How it starts

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

Multi-Agent Workflow: Deep Code Review

Run an 8-angle code review with security audit before merging.

Skills Used

Skill Role
Deep Code Review 8-angle correctness review
Security Review Security vulnerability audit
Code Simplify Cleanup and optimization
Runtime Verify Run the app and observe behavior
Code Review Checklist Final checklist pass

Workflow

Phase 1: Gather Context

git diff @{upstream}...HEAD  # Get the diff
git log --oneline -10        # Recent commits

Phase 2: Deep Review (Parallel)

Launch 3 parallel reviews:

Review 1 — Correctness (8 angles):

Load Deep Code Review skill.
Run all 8 angles: line-by-line, removed-behavior, cross-file, reuse, simplification, efficiency, altitude, conventions.
Return: up to 10 findings ranked by severity.

Review 2 — Security:

Load Security Review skill.
Examine: input validation, auth, crypto, injection, data exposure.
Return: HIGH/MEDIUM findings only with confidence scores.

Review 3 — Cleanup:

Load Code Simplify skill.
Run 4 cleanup angles: reuse, simplification, efficiency, altitude.
Return: actionable fixes.

Phase 3: Runtime Verification

Load Runtime Verify skill.
Build the app, run it, drive the changed code paths.
Capture: stdout, screenshots, error messages.
Push on it: try edge cases, wrong inputs, rapid actions.
Verdict: PASS / FAIL / BLOCKED / SKIP

Phase 4: Final Checklist

Load Code Review Checklist.
Check: works? readable? safe? performant? maintainable?
Frontend: accessible? responsive? loading states? no CLS?
Backend: migrations reversible? rate limiting? logging?

Phase 5: Report

## Review Summary

**Correctness:** 3 findings (1 HIGH, 2 MEDIUM)
**Security:** 1 finding (1 MEDIUM)
**Cleanup:** 2 suggestions
**Runtime:** PASS — all paths verified

### Critical Findings
1. [HIGH] SQL injection in user search — line 42
2. [MEDIUM] Missing error handler in API route — line 87

### Recommendations
- Add input validation before line 42
- Wrap API handler in try/catch
- Consider adding rate limiting

Read the full file on GitHub · 92 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 First seen · 92 lines · 17 tokens per session scan A 84f2dd3b133a

Subscribe to this mod's changes

workflow-code-review is a skill published in the GitHub repository subhansh-dev/agent-maxxing (2 stars, last pushed 1mo ago), licensed MIT. It adds 17 tokens to every session and 612 once invoked, about $0.0001 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-03.