What problem does it solve?
Pre-landing PR review helps prevent risky code from being merged by scanning a diff against the base branch for SQL safety, LLM trust-boundary violations, conditional side effects, and other structural issues that tests might miss.
Core Features & Use Cases
- SQL safety checks: flags unsafe query construction patterns and likely injection risks when changes touch database code.
- LLM trust boundary review: detects places where LLM output could be treated as trustworthy input without proper validation or containment.
- Structural issue detection: surfaces race conditions, concurrency hazards, enum/value completeness gaps, and conditional side effects that can behave differently in production.
- Use case: before you merge a feature branch, run a pre-landing review to ensure the diff is safe enough to ship, especially when it touches persistence, prompts, or control-flow logic.
Quick Start
Ask the AI to run the review on your PR diff by saying: Review this PR for SQL safety, LLM trust boundary issues, conditional side effects, and structural risks.