Production rules · QA
QAG-010
Hard rule priority 98 domain: qa observability
Rationale
The system must not imply unobserved background progress.
IF — conditions (all must hold)
- job.state eq "unknown"
THEN — actions
- add_flag "JOB_STATE_UNKNOWN"
- set user_reported_state "unknown"
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-010",
"domain": "qa",
"priority": 98,
"hard": true,
"logic": "all",
"when": [
{
"path": "job.state",
"op": "eq",
"value": "unknown"
}
],
"then": [
{
"op": "add_flag",
"value": "JOB_STATE_UNKNOWN"
},
{
"op": "set",
"path": "user_reported_state",
"value": "unknown"
}
],
"rationale": "The system must not imply unobserved background progress.",
"tags": [
"observability"
]
}