AI code review & PR summaries
before you push

Preflight catches bugs, security issues, and code smells in your diff — and generates your PR description from your team’s template. All from VSCode.

1
Install the VSCode extension
2
Sign in with GitHub
3
Click “Review Changes” before you push

Review Your Diff

Senior-engineer feedback on every change. Catches bugs, security holes, N+1 queries, and code smells — not formatting.

Generate Your PR

Auto-fills your team’s PR template section by section from the diff and commits. Copy, paste, done.

Track Progress

Dashboard shows repos reviewed, issues found, quality scores, and monthly usage — across all your projects.

See It in Action

Preflight highlights issues inline and shows structured results in the sidebar — right where you code.

auth.ts \u2014 my-project
38async function validateToken(token) {
39 const decoded = jwt.decode(token);
40 if (!decoded) return null;
41
42 const user = await db.users.find(decoded.sub);
43 return user;
44}
45
46app.post('/api/data', async (req, res) => {
47 const items = req.body.items;
48 for (const item of items) {
49 await db.items.insert(item);
50 }
51 res.json({ ok: true });
52});

Ready to Review Before You Push?

Join the Beta