Production rules · QA
QAG-007
Hard rule priority 100 domain: qa ranking
Rationale
Hard failures are filtered before utility ranking.
IF — conditions (all must hold)
- candidate.hard_failure eq true
THEN — actions
- set candidate.eligible false
- block "ranking"
This is a hard rule: when it matches it participates in blocking — the pipeline may not proceed until the condition is repaired or a human accepts the risk.
Full record
{
"id": "QAG-007",
"domain": "qa",
"priority": 100,
"hard": true,
"logic": "all",
"when": [
{
"path": "candidate.hard_failure",
"op": "eq",
"value": true
}
],
"then": [
{
"op": "set",
"path": "candidate.eligible",
"value": false
},
{
"op": "block",
"value": "ranking"
}
],
"rationale": "Hard failures are filtered before utility ranking.",
"tags": [
"ranking"
]
}