Setup loaded. Click Generate Review Prompt.

Coding Workflows

Code Review Prompt Generator

"Review this code" gets you shallow comments. Pick the review focus — security, performance, correctness, production readiness — and get a review contract: real criteria, a dynamic checklist, a severity standard, and verdict rules. Runs entirely in your browser.

What is being reviewed, and what is at stake? E.g. "Review the authentication middleware before the release."

Review Focus

The tool's heart: each focus swaps in its own criteria set and checklist — not just a different name.

Review Scope

Diff adds breaking-change and regression criteria; Pull Request adds cross-file, deployment, and migration risk.

Language

Adds language-specific checks to the checklist — async deadlocks for C#, mutable defaults for Python.

Review Style

Production Gate asks one question of every finding: would you approve this for production deployment?

Paste the snippet, file, or diff here and the prompt carries it; leave empty and the prompt ends with a paste-here placeholder.

Review Checklist Preview (live — the checks your prompt will enforce)

                
            

AI Resource Library

Resources for this tool

View All Resources →
Engineering

Authorization Review Prompt

Hunt the broken-access-control bug — review code for missing per-resource checks, IDOR, and 'logged in' mistaken for 'allowed', the vulnerability class that tops the OWASP list.

View Resource →

Workflow Playbooks

Playbooks that use this tool

All Playbooks →
Coding Workflows · 4 steps

AI API Design Workflow

Design an API on its contract instead of discovering it endpoint by endpoint — model the resources, design the endpoints and payloads, pin the contract, then review it before code locks it in.

View Playbook →
Coding Workflows · 4 steps

AI Auth & Identity Workflow

Design access control before you build it, not after a breach — choose the authentication approach, model the roles and permissions, review the design for gaps, then document the identity model.

View Playbook →
Coding Workflows · 5 steps

AI Code Review Workflow

A complete AI-assisted review pass — not one prompt — that ends with ranked findings, tests guarding behavior, and a refactor plan when one is warranted.

View Playbook →
Coding Workflows · 3 steps

AI Security Review Workflow

Review code for what an attacker would do, not just what tests catch — anchor the model as a security engineer, run a threat-focused review, then back the findings with auth and input tests.

View Playbook →
Coding Workflows · 4 steps

AI Deployment & Release Workflow

Cross the gap between 'tests pass' and 'safe in production' — assess release readiness, plan the deploy and its rollback, and set up the monitoring and launch checks before you ship, not after.

View Playbook →
Operations Workflows · 4 steps

AI UI & Component Design Workflow

Structure a UI so it stays consistent as it grows — inventory the screens, break them into reusable components, specify the component system and its rules, then review the structure for drift.

View Playbook →

Build Blueprints

Blueprints that use this tool

All Blueprints →
Blueprint · 10 stages

Build a SaaS MVP with AI

The full path from idea to a shipped SaaS MVP — define and scope the requirements, design the architecture, API, and data model, then build it reviewed, tested, secured, cost-controlled, and deployed.

View Blueprint →
Blueprint · 9 stages

Build an API Backend with AI

The full path to a backend you can put clients on — define the requirements, design the architecture, API contract, data model, and access control, then build it reviewed, tested, secured, and shipped.

View Blueprint →
Blueprint · 8 stages

Modernize a Legacy Codebase with AI

The full path to taming an inherited codebase — understand it, document its architecture, pin its behavior with tests, then refactor, modernize, review, speed up, and ship it without breaking what works.

View Blueprint →
Blueprint · 9 stages

Build a Marketplace with AI

The full path to a two-sided platform — define the buyer-and-seller requirements, model the data, design the API, build roles and permissions, wire integrations, design the UI, then test, secure, and ship it.

View Blueprint →

How it works

State the review objective — what is being reviewed and what's at stake — then pick the review focus: Correctness, Security, Performance, Maintainability, Readability, Architecture, Best Practices, or Production Readiness. Each focus swaps in its own real criteria set and a 10–12 item checklist (Security checks injection vectors and privilege paths; Performance checks allocations and N+1 queries) — the live preview shows exactly which checks your prompt will enforce. Set the review scope (Diff adds breaking-change and regression criteria; Pull Request adds cross-file, deployment, and migration risk), the language (each adds its own traps — async deadlocks for C#, mutable defaults for Python), and the review style — Production Gate asks one question of every finding: would you approve this for production? Optionally paste the code so the prompt carries it. Click Generate Review Prompt for the full contract: objective, scope, criteria, severity rules, checklist, output format, and verdict rules. Nothing leaves your browser.

Use cases

  • Turning "review this code" into a security review that actually checks injection and auth
  • Standardizing one review contract across the whole team
  • Gating production deploys with a SHIP / DO NOT SHIP review
  • Reviewing AI-generated code with the suspicion it deserves

Pro tips

  • Pick the focus for what's at stake, not what's interesting: a payment handler gets Security, a batch job gets Performance, a hotfix gets Correctness. One focused review beats one shallow review of everything.
  • The severity system is half the value: findings tagged [CRITICAL] through [NIT] are triageable; untagged findings are a wall of text. Keep it even when you trim other sections.
  • Use Diff or Pull Request scope for changes — the breaking-change and regression criteria only appear there, and they're where reviews earn their keep.
  • Production Gate plus Production Readiness focus is the strongest combination on the page: every finding answers "would this survive production?", and the verdict is a deployment decision with the minimal fix list.

FAQ

How is this different from asking the AI to refactor my code?

Direction. Review JUDGES the code: it reports findings with severities and a verdict, and the generated prompt explicitly says "report findings; do not rewrite the code". Refactoring CHANGES the code — that's the Refactor Prompt Builder, coming soon in this category. Review first, refactor second: you want to agree on what's wrong before anything gets rewritten.

Does the review focus really change the review, or just the title?

It swaps the entire criteria set and checklist. Security reviews check authentication on every entry point, injection vectors, secrets in code, privilege escalation, SSRF — twelve checks. Performance reviews check hot-loop allocations, N+1 queries, algorithmic complexity, resource leaks — ten different checks. The live preview shows the exact list before you generate.

What does the severity system do?

It forces every finding to carry exactly one tag — [CRITICAL], [MAJOR], [MINOR], or [NIT] — with defined meanings (CRITICAL = must fix before merge; NIT = optional style preference) and one calibration rule: severity reflects impact, not effort to fix. Tagged findings are triageable; without tags, a review is just opinions in a row.

What changes between the review scopes?

The criteria. A snippet is judged on its own terms; a file adds structure and ownership; a Diff adds breaking changes, backward compatibility, regression risk, and whether the diff does one thing; a Pull Request adds cross-file impact, deployment risk, and migration risk. Reviewing a diff with snippet criteria misses exactly the things diffs break.

Should I paste my code into the tool?

Optional. Paste it and the prompt carries it in a fenced block — one artifact to copy into the AI. Leave it empty and the prompt ends with a paste-here placeholder. Either way the code is never executed or rendered — it travels as plain text, and nothing leaves your browser.

Can I use this for SQL code?

For review, yes — the SQL language mode adds review-perspective checks: SELECT * in production paths, indexes implied by WHERE clauses, scan-forcing predicates. Deep query optimization — execution plans, schema context, rewrites — is a different job with different inputs: that's the SQL Optimization Prompt, coming soon in this category.