惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
B
Blog RSS Feed
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
A
About on SuperTechFans
G
Google Developers Blog
aimingoo的专栏
aimingoo的专栏
U
Unit 42
WordPress大学
WordPress大学
Y
Y Combinator Blog
罗磊的独立博客
J
Java Code Geeks
Microsoft Azure Blog
Microsoft Azure Blog
腾讯CDC
博客园 - 叶小钗
Stack Overflow Blog
Stack Overflow Blog
Engineering at Meta
Engineering at Meta
Microsoft Security Blog
Microsoft Security Blog
GbyAI
GbyAI
V
V2EX
雷峰网
雷峰网
H
Hackread – Cybersecurity News, Data Breaches, AI and More
S
SegmentFault 最新的问题
酷 壳 – CoolShell
酷 壳 – CoolShell

Learn Cloud Native

Plan-based validation for coding agents on Kubernetes | Learn Cloud Native PR validation at scale and a sandbox for every pull request on Kubernetes | Learn Cloud Native 7 practical MCP policies with agentgateway | Learn Cloud Native Agentgateway rate limiting for agents | Learn Cloud Native Local development with coding agents on Kubernetes using Signadot | Learn Cloud Native cuenv: one typed file for your whole project | Learn Cloud Native Anatomy of AI Agents Accessing Google Drive from Next.js Deploying to Fly.io using Dagger and Github Top Cloud-Native & Kubernetes Certifications [2026 Guide] Rapid microservices development with Signadot How to prepare for Istio certified associate exam (ICA) Global Rate Limiting in Istio with Envoy Rate Limit Service My Journey with Istio: From Incubation to Graduation Cilium Network Policy Tutorial: Secure Kubernetes Step by Step Kubernetes Networking: How kube-proxy and iptables Work Istio ServiceEntry: DNS vs. STATIC Resolution & Endpoints Explained Apply an Istio DestinationRule Globally (Mesh-Wide) Istio Rate Limiting: Configure a Local Rate Limiter in Envoy How to expose custom ports on Istio ingress gateway Portainer Tutorial: A Web UI for Kubernetes & Containers Traefik Proxy 2.x and TLS 101 Kubernetes CLI (kubectl) tips you didn't know about Setting up SSL certificates with Istio Gateway ArgoCD Best Practices You Should Know 在 OCI Ampere A1 计算实例上运行 AI Running AI On OCI Ampere A1 Instance How to Deploy Traefik Proxy Using Flux and GitOps Principles Firebase Emulators with Next.js: Local Setup Guide Running Hugo on free Ampere VM (Oracle Cloud Infrastructure)
Preflight: AI Code Review Before You Push
Peter Jausovec · 2026-03-05 · via Learn Cloud Native

I've been building a tool I want to share with you. It's called Preflight and it does one thing: reviews your code changes before you push.

First thing that irriated me about this is that I'd open a pull request and then either have a Copilot or a reviewer point out stupid things that I should have caught myself before pushing. The feedback is valid in most cases, but the development loop is slow.

The second thing was filling out the PR template -- deleting and removing the boilerplate text, writing the summary, picking the change type(s), writing a changelog entry, etc. Definitely something an LLM could help with.

Anyway, that's how I ended up building Preflight.

What Preflight Does

Preflight is a VSCode extension backed by a lightweight backend and it has basically two features.

When you click "Review Changes", it:

  1. Computes the diff between your branch and main (locally)
  2. Sends the diff to the server, which runs it through an LLM (Claude by default, but others can be easily supported)
  3. Returns structured feedback — categorized by severity and type, as well as a summary of the changes

The results show up in three places simultaneously:

  • Inline in the editor — colored line highlights with hover details
  • Problems panel — standard VSCode diagnostics with squiggly underlines
  • Sidebar panel — a summary view with score, grouped issues, and click-to-navigate
Review items listed in the sidebar panel
Review items listed in the sidebar panel

Each issue includes a severity (error, warning, info), a category (bug, security, performance, quality), a description, and — when applicable — a suggested fix.

Review decorations shown inline in the editor
Review decorations shown inline in the editor

The key thing is that this happens before you push anything. You fix the issues, run the review again, and Preflight automatically detects which issues were resolved and which are still open. The history persists across sessions, so you don't lose track of anything.

The second feature is PR summary generation. If your team uses a PR template, Preflight finds it in your repo, reads your diff and commit log, and fills in each section. You get an editable preview — tweak it, copy it, paste it into GitHub.

Generated PR summary ready to copy
Generated PR summary ready to copy

No more staring at a blank PR description trying to summarize three days of work.

What I'm Looking For

I want to test this with real users on more than one codebase. If this sounds like something you'd use, I'd love for you to try it out.

Try Preflight on your codebase

Sign up for early access — you'll get a beta invite key and the extension to install.

Sign up for early access

I'm especially interested in:

  • What kinds of issues it catches (or misses) on your codebase
  • Whether the PR summaries match your team's expectations
  • Rough edges in the workflow