Back to Registry
code.python.lint_ruff
HARD
Verifies that agent-generated Python code passes ruff lint checks with configurable violation thresholds.
Scorecard
| Determinism | deterministic |
| Evidence Quality | hard-state |
| Intended Use | eval-and-train |
| Gating Required | No |
| Permissions | fs:write_tmp exec:ruff |
Test Fixtures
9 total
| Type | Count |
|---|---|
| Positive | 3 |
| Negative | 3 |
| Adversarial | 3 |
Metadata
| Version | 0.1.0 |
| Domain | code |
| Task Type | lint_verification |
| Contributor | vr.dev |
| Source | code-quality |
Use in SDK
# CLI
vr verify --verifier code.python.lint_ruff --ground-truth '{"order_id": "ORD-42"}'
# Python
from vrdev import verify
result = verify("code.python.lint_ruff", ground_truth={"order_id": "ORD-42"})
# API
curl -X POST https://api.vr.dev/v1/verify \
-H "X-API-Key: vr_live_..." \
-d '{"verifier": "code.python.lint_ruff", "ground_truth": {"order_id": "ORD-42"}}'