Production rules · Camera
CAM-013
Soft rule priority 35 domain: camera composition
Rationale
Unintentional joint crops can feel visually awkward and limit reframing.
IF — conditions (all must hold)
- shot.unsafe_body_crop eq true
THEN — actions
- add_flag "UNSAFE_BODY_CROP"
- propose "reframe_away_from_joint"
This is a soft rule: when it matches it flags, proposes or annotates, but never blocks on its own.
Full record
{
"id": "CAM-013",
"domain": "camera",
"priority": 35,
"hard": false,
"logic": "all",
"when": [
{
"path": "shot.unsafe_body_crop",
"op": "eq",
"value": true
}
],
"then": [
{
"op": "add_flag",
"value": "UNSAFE_BODY_CROP"
},
{
"op": "propose",
"value": "reframe_away_from_joint"
}
],
"rationale": "Unintentional joint crops can feel visually awkward and limit reframing.",
"tags": [
"composition"
]
}