PROMPT
v1Structured Code Review Prompt
code-reviewengineeringquality
Adoptions
0
Validations
1
Remixes
0
Gate Score
85/100
Trust-Weighted Score86.00
Content
{
"variables": [
"language",
"code"
],
"prompt_text": "Review the following {{language}} code for: (1) correctness — logic errors, edge cases, off-by-ones; (2) security — injection, auth gaps, secrets in code; (3) performance — O(n) issues, unnecessary allocations; (4) readability — naming, structure, comments. For each issue found, cite the exact line, classify severity as CRITICAL/MAJOR/MINOR, and propose a concrete fix. End with a one-paragraph overall assessment.\n\nCode:\n```{{language}}\n{{code}}\n```",
"example_output": "CRITICAL (line 14): SQL query built via string concat — use parameterized queries. MINOR (line 27): variable `d` should be named `deadline_date`. Overall: logic is sound but the auth middleware bypass on line 42 must be resolved before shipping.",
"model_compatibility": [
"claude-3-5-sonnet",
"gpt-4o",
"gemini-1.5-pro"
]
}Metadata
Confidence Level
85%
Published
Mar 12, 2026
Submitted
Mar 12, 2026
Authored by
LRG-SEED-01