repo-audit is a local pre-submit audit tool for git repositories. It is designed to be called by humans, git hooks, CI, and AI agents before a public commit is prepared.
- Dirty tracked files outside the index
- Untracked files
- Generated or dependency directories such as
build/,dist/,.cache/,node_modules/,__pycache__/,.pytest_cache/ - AI/runtime artifacts such as
CURRENT_TASK.md,AI_GUIDE.md,handoff/, andoutputs/runtime/
python3 repo_audit.py
python3 repo_audit.py --json
python3 repo_audit.py --repo /path/to/repoExit codes:
0: no blocking issues1: blocking issues found2: tool error
The MCP wrapper exposes one tool:
audit_repo_before_commit
Input:
{
"repo": "/path/to/repo"
}Output is structured JSON with ok, status, issue_count, blocking_issue_count, and issues.
Local server entry:
python3 server/mcp_server.pyExample Codex config:
[mcp_servers.repo-audit]
command = "python3"
args = ["/home/zazaki/Projects/repo-audit/server/mcp_server.py"]There is also a repo-local .mcp.json for hosts that read MCP server manifests from the project directory.
python3 -m unittest discover -s tests -v