What problem does it solve?
quality-check-scoped eliminates slow, noisy PR review audits by evaluating only the quality standards that are relevant to the files and diff hunks actually touched by a pull request.
Core Features & Use Cases
- Diff-bounded evaluation: Restricts reads and standard matching to
changed_paths, ensuring the scan scope never expands beyond what the PR modified.
- Taxonomy-driven determinism: Loads the PR severity taxonomy from
severity_taxonomy_path and applies mechanical match rules to produce findings with taxonomy-sourced severities.
- KB reuse without subagent execution: Reuses the same quality-check knowledge base data model, but performs the work as a single-pass evaluator and emits
findings.yaml.
- Production-ready output for tooling: Produces a stable, review-friendly
findings.yaml with counts by severity and a computed scan_coverage metric.
Quick Start
Run the review-pr flow with the payload containing diff_path, changed_paths, standards_set, severity_taxonomy_path, intent_summary, and output_path to generate findings.yaml for the PR.