Production rules · Generation
GEN-013
Hard rule priority 90 domain: generation artifact
Rationale
Object disappearance or duplication breaks world coherence.
IF — conditions (all must hold)
- generated.object_permanence_score lt 0.8
THEN — actions
- add_flag "OBJECT_PERMANENCE_FAILURE"
- propose "regenerate_or_repair"
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": "GEN-013",
"domain": "generation",
"priority": 90,
"hard": true,
"logic": "all",
"when": [
{
"path": "generated.object_permanence_score",
"op": "lt",
"value": 0.8
}
],
"then": [
{
"op": "add_flag",
"value": "OBJECT_PERMANENCE_FAILURE"
},
{
"op": "propose",
"value": "regenerate_or_repair"
}
],
"rationale": "Object disappearance or duplication breaks world coherence.",
"tags": [
"artifact"
]
}