Production rules · Camera
CAM-015
Hard rule priority 83 domain: camera continuity
Rationale
Direction mismatch can break perceived action continuity.
IF — conditions (all must hold)
- shot.screen_direction_mismatch eq true
THEN — actions
- add_flag "SCREEN_DIRECTION_MISMATCH"
- propose "match_direction_or_insert_reorientation"
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": "CAM-015",
"domain": "camera",
"priority": 83,
"hard": true,
"logic": "all",
"when": [
{
"path": "shot.screen_direction_mismatch",
"op": "eq",
"value": true
}
],
"then": [
{
"op": "add_flag",
"value": "SCREEN_DIRECTION_MISMATCH"
},
{
"op": "propose",
"value": "match_direction_or_insert_reorientation"
}
],
"rationale": "Direction mismatch can break perceived action continuity.",
"tags": [
"continuity"
]
}