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

推荐订阅源

L
LangChain Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
雷峰网
雷峰网
量子位
V
V2EX
S
SegmentFault 最新的问题
月光博客
月光博客
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
V
Visual Studio Blog
大猫的无限游戏
大猫的无限游戏
T
Tailwind CSS Blog
博客园_首页
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
美团技术团队
Y
Y Combinator Blog
The Cloudflare Blog
C
Check Point Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
腾讯CDC
B
Blog
Stack Overflow Blog
Stack Overflow Blog
P
Proofpoint News Feed

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