What problem does it solve?
Automates a local pre-merge build review by running the full build and test pipeline, surfacing lint, type, test, and clippy failures, and guiding fixes so developers can validate a working codebase before committing.
Core Features & Use Cases
- End-to-end pipeline execution: Execute frontend linting, TypeScript typechecks, unit tests, and Rust cargo tests and clippy in sequence to produce a consolidated report.
- Error analysis and targeted fixes: Parse errors with file and line context, read source files for context, and apply corrective edits for lint, type, or test failures.
- Iterative verification: Re-run the pipeline after fixes until all actionable, local issues are resolved; useful for pre-merge validation and local CI debugging.
Quick Start
Run the repository's build-review script, inspect build-review-report.txt, fix the reported issues in source files, and re-run the script until local checks pass.