A workflow and reusable prompt for AI code reviews that check correctness and impact, not style. A developer published a reusable prompt and workflow for running AI-assisted code reviews that focus on correctness and impact rather than style, aiming to complete reviews in seconds instead of minutes. The approach fetches PR metadata, discussion, and diffs in parallel via the GitHub CLI, uses a code graph built from the AST with Tree-sitter and exposed over MCP to trace callers and downstream impact, and checks changes against a checklist covering concurrency, memory and I/O, time and state, boundaries, and security. A workflow and a reusable prompt for running code reviews with an AI coding agent. The goal is a review that checks correctness and impact, not style, and finishes in seconds instead of minutes. Two things tend to make AI reviews slow and noisy: - Spending time on formatting and naming, which linters and CI already cover. - Exploring the repo one call at a time: checking out branches, reading file after file, grepping for usages. The workflow below avoids both. - Approve improvements. If the PR moves the codebase forward, approve it. Don't block on personal preference. - Read the discussion first. Review only new code and unresolved threads. Don't re-raise resolved comments. - Calibrate to size. Aim for around 100 changed lines. Flag PRs over 300 lines; recommend splitting anything over 1,000. - No formatting comments. Leave formatting and linting to tooling. Review correctness, concurrency, resource handling, and impact. 1. Fetch everything in parallel. PR metadata, discussion, and diff in the same turn. 2. Map the impact. Use a call graph to find callers and affected code. 3. Check intent. If a ticket is linked, compare the change to its acceptance criteria. 4. Analyze and report. Review against the checklist below and output findings by severity. Don't check out the branch locally, run commands one after another, or write temp files. Pull what you need straight from the remote, in parallel, and keep it in context. The example uses the GitHub CLI. Other Git hosts have equivalent APIs. PR metadata, commits, comments, and review threads with resolved status in one query gh api graphql -F owner="