
I Built a Free CLI That Reviews Your PRs with AI (One Command, Zero Setup)
I got tired of waiting for code reviews. So I built a tool that does it in 10 seconds. The Problem You open a PR. You wait. Hours pass. Maybe a day. The reviewer finally looks at it, spots a bug you should have caught, and now you need another round. What if you could get an AI review before the human one? The Tool ai-review is a single bash script that: Fetches your PR diff from GitHub Sends it to Claude for analysis Returns a structured review: Summary, Risks, Suggestions, Confidence Score ai-review --pr https://github.com/owner/repo/pull/123 That's it. No npm install. No Docker. No config files. What You Get ## 📋 Summary Refactors the auth module to use database-backed sessions instead of JWTs, improving security and enabling revocation. ## ⚠️ Identified Risks - Session table has no index on expires_at — queries will slow down as sessions accumulate - No rate limiting on session creation endpoint ## 💡 Suggestions - Add a cleanup job for expired sessions - Index the expires_at column
Continue reading on Dev.to DevOps
Opens in a new tab


