How I Built a VS Code Extension That Solves Bad Commit Messages (No AI Required) A developer built Git Commit Genius, a VS Code extension that generates professional commit messages automatically using pattern matching and file analysis rather than AI. The tool analyzes staged files after `git add .` and produces suggestions locally and instantly via the Ctrl+Shift+C shortcut, positioning itself as an alternative to AI-based commit message generators. Every developer has done it. You finish some code, open the terminal, and write: git commit -m "fix" Or worse: git commit -m "update" Months later, you look at your history and have no idea what changed. Good commit messages take time. You have to: It's not hard — it's just tedious. I made Git Commit Genius — a VS Code extension that generates professional commit messages automatically. How it works: git add . Ctrl+Shift+C Features: AI commit message generators exist. But they: My tool uses pattern matching and file analysis to generate suggestions — all locally, all instantly. If you want to try it: https://payhip.com/b/3QYiN https://payhip.com/b/3QYiN I'm planning: Feedback welcome