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

推荐订阅源

雷峰网
雷峰网
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Azure Blog
Microsoft Azure Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
L
LangChain Blog
云风的 BLOG
云风的 BLOG
Jina AI
Jina AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
I
InfoQ
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
人人都是产品经理
人人都是产品经理
小众软件
小众软件
量子位
The GitHub Blog
The GitHub Blog
博客园 - 【当耐特】

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I'm a CS student. I built a GitHub App and audited 5 popu...
zaxion · 2026-05-10 · via DEV Community

I started building Zaxion in August 2025.

No co-founder. No team. No funding. Just me, a CS
student, annoyed at watching the same
security mistakes show up in every codebase I
touched — including my own.

The idea was simple: what if your team's standards
actually got enforced on every PR, automatically,
before a human ever had to say anything?

8 months later I shipped it.

Zaxion is a GitHub App that enforces custom code
policies on every PR. You write the rule once in
plain English or in Jason format. It enforces it forever. Hardcoded
secrets, unhandled async calls, raw SQL with user
input, missing tests on critical paths — whatever
your team actually cares about.

The engine uses Babel AST to understand code
semantically. Not just text matching. Actual data
flow, variable scope, taint tracking. For higher
level architectural rules that are hard to express
as code, it uses an LLM evaluator. Both run on
every PR in under a second.

After I shipped it,** I wanted to prove it worked on
real codebases**. Not toy examples. Not repos I
controlled. Real production code from teams that
actually know what they're doing.

**So I ran it on 5 of them.

**

cal.com

cal.com is one of the most well-known open source
scheduling platforms. 32k stars. Active team.
Professional codebase.

Zaxion found console.log statements shipping to
production in markdownToSafeHTMLClient.ts at line 15.

2 occurrences. Production code. Not a test file.

Console logs in production mean internal application
data is printing to every user's browser console.
Not a catastrophic breach. But the kind of thing
that shouldn't make it through review.

It did. Zaxion caught it.


trpc/trpc

tRPC is the TypeScript RPC framework that half the
modern web is built on. Serious engineers. Fast
moving repo.

Zaxion found 5 unhandled async calls in
packages/react-query/src/utils/createUtilityFunctions.ts

Production utility code. If any of those promises
reject — and eventually they will — the app fails
silently. No error message. No stack trace. Just
broken behavior that takes hours to trace back to
a missing try/catch.

5 occurrences. Passed human review.


withastro/astro

Astro is the web framework everyone switched to
when they got tired of shipping too much JavaScript.
The team ships fast and ships well.

Zaxion found 5 unhandled async calls in
packages/astro/src/runtime/server/jsx.ts

That file runs on every server render. If those
async calls fail without error handling, the server
throws an unhandled exception in production. For
every user hitting that route.

Same pattern as trpc. Different repo. Different team.
Same result.


the pattern

I want to be clear about something.

I'm not posting these findings to make these teams
look bad. cal.com, trpc, and astro are maintained
by some of the best engineers in open source. These
are not rookie mistakes.

These are what happens when good engineers review
a lot of PRs very fast. Volume beats attention
every time. The issue isn't skill. It's that humans
can't maintain the same level of focus on PR number
47 as they had on PR number 1.

That's the gap Zaxion sits in.

It doesn't get tired. It doesn't have a bad day.
It doesn't approve something because it's Friday
and the PR looks fine at a glance.

It runs the same check on every PR the same way
on day 300 as it did on day 1.


how it works in 30 seconds

You install Zaxion on your GitHub repo as a GitHub
App. It takes about 30 seconds.

You either use the 31 built-in policies that ship
with it — covering security, reliability,
architecture, code quality, testing, and performance
— or you write your own policy in plain English or in jason format in the dashboard.

When a PR opens, Zaxion analyzes it and either
passes it or blocks it with a comment explaining
exactly what failed, which file, which line, and
what the policy says.

That's it.


I need your help

I'm going to be straight with you.

Zaxion is real and it works. t*he findings above
are genuine.
* but it's also something **I built alone
as a 20 year old CS student **over 8 months — which
means it's not perfect.

some policies might be too aggressive for certain
codebases. some advanced rules that you create might not work
correctly on every repo. some edge cases I haven't
seen yet are probably going to break something.

I'm not asking you to use a broken tool.
I'm asking you to use an early one.

if you install it and something doesn't work the
way you'd expect — I genuinely want to know. not
to defend it. to fix it.

if a policy fires when it shouldn't — tell me.
if a policy misses something obvious — tell me.
if the dashboard is confusing — tell me.

this is the stage where real feedback from real
developers matters more than anything else.
and I'd rather hear "this is broken" from someone
who tried it than build in a vacuum for another
8 months.


try it

It's completely free for open source projects.

If you maintain any GitHub repo — personal project,
OSS library, anything with PRs — I'd genuinely
appreciate you giving it a shot.

👉 zaxion.dev

drop a comment here or reach me directly at kandizz1947@gmail.com if
you find something wrong. I read everything.


Quick Question

what's the most common issue you keep seeing
in PRs on your repo?