Avouch Replaces Commercial AI Code Review with Local Tool
TL;DR. A developer created Avouch, a free, local, Git-aware static analysis CLI for Python, replacing a subscription-based AI code reviewer. - Avouch analyzes only changed Python files using the standard AST module, reporting structural issues pre-commit. - The tool avoids daemons, network calls, and path lists, ensuring quick execution bound by diff size. - Its design focuses on exact metric computation from AST, providing clear error reporting without gating commits.
- Avouch provides a lightweight, Git-aware static analysis tool for Python code.
- It reviews only changed files pre-commit, leveraging the AST module for structural problem detection.
- The tool operates locally without network access or daemons, offering rapid feedback.
- Avouch replaces a previously used commercial AI code reviewer, emphasizing open-source alternatives.