I built an AI that reviews every PR automatically (because nobody was reviewing mine)
Shaan Ali Khan developed an AI tool called PushSafe to automatically review pull requests (PRs) on GitHub. The tool aims to catch common coding errors that developers often overlook, such as null crashes and logic errors. By integrating with GitHub, PushSafe provides inline comments on code diffs, acting like a constant teammate for code review.
- ▪PushSafe connects to GitHub repositories and reviews every PR opened.
- ▪It identifies issues like null crashes, missing awaits, and hardcoded secrets.
- ▪The tool ignores formatting issues, allowing developers to focus on critical bugs.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3948050) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Shaan Ali Khan Posted on May 23 I built an AI that reviews every PR automatically (because nobody was reviewing mine) #ai #programming #webdev #vibecoding I've been vibe coding for months. Cursor writes the code. Claude fixes the bugs. I ship. Fast. Really fast. But nobody was reviewing my code. Not me. Not a teammate. Nobody. I'd read the diff quickly, it looked fine, I merged it. Then a user found the bug I missed. They didn't email me. They just left.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).