Production rules · QA
QAG-012
Hard rule priority 99 domain: qa gate
Rationale
Critical issues require explicit resolution or authorized disposition.
IF — conditions (all must hold)
- qa.critical_count gt 0
THEN — actions
- append gates "critical_human_resolution"
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-012",
"domain": "qa",
"priority": 99,
"hard": true,
"logic": "all",
"when": [
{
"path": "qa.critical_count",
"op": "gt",
"value": 0
}
],
"then": [
{
"op": "append",
"path": "gates",
"value": "critical_human_resolution"
}
],
"rationale": "Critical issues require explicit resolution or authorized disposition.",
"tags": [
"gate"
]
}