Every AI-generated PR scored on production readiness. Not just "do tests pass" — "would you merge it?" Add to your pipeline in 2 minutes.
Add QualBench to your GitHub Actions. Every AI-generated PR gets scored and reviewed automatically.
# .github/workflows/qualbench.yml name: QualBench on: [pull_request] jobs: quality-check: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: semcod/qualbench-action@v1 with: tool: prollama fail_on_score: 70
# Install and run pip install qualbench qualbench quickstart # Score current diff qualbench run --tool prollama # Machine-readable output qualbench run --json
Real-time rankings by quality score and cost efficiency. Refresh
CLI, API, GitHub Action — same portable JSON schema. No translation, no surprises.
{
"quality_score": 78,
"verdict": "needs_review",
"dimensions": { ... },
"top_issues": ["complexity_increase"]
}
Schema docs