Bow Tie Kreative VIDEO Grammar

Production rules · Clip

CLP-007

Hard rule priority 97 domain: clip emotion context

Rationale

Emotion increases, rather than reduces, the need for truthful context.

IF — conditions (all must hold)

  • clip.emotional_power gte 0.75
  • clip.context_completeness lt 0.8

THEN — actions

  • add_flag "EMOTIONAL_BUT_CONTEXT_INCOMPLETE"
  • set clip.usage_state "dependent"
  • block "standalone_publish"

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

rules/production_rules.json
{
  "id": "CLP-007",
  "domain": "clip",
  "priority": 97,
  "hard": true,
  "logic": "all",
  "when": [
    {
      "path": "clip.emotional_power",
      "op": "gte",
      "value": 0.75
    },
    {
      "path": "clip.context_completeness",
      "op": "lt",
      "value": 0.8
    }
  ],
  "then": [
    {
      "op": "add_flag",
      "value": "EMOTIONAL_BUT_CONTEXT_INCOMPLETE"
    },
    {
      "op": "set",
      "path": "clip.usage_state",
      "value": "dependent"
    },
    {
      "op": "block",
      "value": "standalone_publish"
    }
  ],
  "rationale": "Emotion increases, rather than reduces, the need for truthful context.",
  "tags": [
    "emotion",
    "context"
  ]
}

This rule as JSON → · Evaluate a context →