Production rules · QA
QAG-002
Hard rule priority 100 domain: qa human_review
Rationale
Automated checks cannot overrule a valid meaning-integrity rejection.
IF — conditions (all must hold)
- qa.automated_pass eq true
- qa.human_meaning_pass eq false
THEN — actions
- add_flag "HUMAN_MEANING_REJECTED"
- block
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-002",
"domain": "qa",
"priority": 100,
"hard": true,
"logic": "all",
"when": [
{
"path": "qa.automated_pass",
"op": "eq",
"value": true
},
{
"path": "qa.human_meaning_pass",
"op": "eq",
"value": false
}
],
"then": [
{
"op": "add_flag",
"value": "HUMAN_MEANING_REJECTED"
},
{
"op": "block"
}
],
"rationale": "Automated checks cannot overrule a valid meaning-integrity rejection.",
"tags": [
"human_review"
]
}