Block a commit automatically when an AI reviewer detects invented or broken code in the staged diff.
Add a free local or remote pre-checker to catch obvious issues before spending main reviewer usage.
Run a local dashboard to see recent commit reviews and whether flagged issues were resolved.
| revvax/veto-gate | 123satyajeet123/bitnet-server | adeilsonrbrito/cross-model-consult | |
|---|---|---|---|
| Stars | 0 | 0 | 0 |
| Language | Shell | Shell | Shell |
| Setup difficulty | moderate | easy | moderate |
| Complexity | 3/5 | 2/5 | 3/5 |
| Audience | developer | developer | developer |
Figures from each repo's GitHub metadata at analysis time.
Requires your own OpenAI account for the Codex CLI reviewer, Windows support is WSL2 only and not fully verified.
veto-gate is a review gate that sits in front of git commit when you are working inside Claude Code. Before a commit is allowed through, the staged changes are sent to an AI reviewer, and if the reviewer spots a real problem, the commit is blocked with an explanation instead of quietly landing. The idea is to catch broken or invented code before it gets into your history, not after. The main reviewer is the OpenAI Codex CLI, which you connect using your own OpenAI account since veto-gate does not pay for any AI calls on your behalf. In front of that main reviewer you can optionally add a free pre-checker, either a local model running on your own machine through a tool like LM Studio or Ollama, or a remote free-tier option through Groq or Gemini. The pre-checker looks at the diff first and catches obvious mistakes early, saving the main reviewer's usage for trickier cases. A few checks run without any AI at all: a size limit on how large a single commit can be, a check for invented function calls, and checks around tests and evidence notes. Setup on macOS involves installing a few common command line tools, installing and logging into the Codex CLI, cloning the repository, and running an install script. After that, each repository you want reviewed needs a small config file turned on, since the gate only watches repositories that opt in. There is also a local web dashboard you can start that shows recent runs and any findings, along with per-repository settings. This is a shell-based developer tool aimed at people already using Claude Code and the Codex CLI who want an automatic safety check before commits land. It has been developed and tested on macOS, with Windows support available only through WSL2 and not yet fully verified. The project is released under the MIT license.
veto-gate blocks a git commit inside Claude Code if an AI reviewer (OpenAI Codex CLI, with optional local or free-tier pre-checkers) finds a real problem in the staged diff.
Mainly Shell. The stack also includes Shell, OpenAI Codex CLI, LM Studio.
MIT license: use freely for any purpose, including commercial use, as long as you keep the copyright notice.
Setup difficulty is rated moderate, with roughly 30min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.