Production rules · Story
STR-001
Hard rule priority 90 domain: story hook payoff
Rationale
A promise creates an obligation in the narrative graph.
IF — conditions (all must hold)
- story.has_opening_promise eq true
THEN — actions
- append requirements "explicit_payoff_link"
- add_flag "PAYOFF_REQUIRED"
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": "STR-001",
"domain": "story",
"priority": 90,
"hard": true,
"logic": "all",
"when": [
{
"path": "story.has_opening_promise",
"op": "eq",
"value": true
}
],
"then": [
{
"op": "append",
"path": "requirements",
"value": "explicit_payoff_link"
},
{
"op": "add_flag",
"value": "PAYOFF_REQUIRED"
}
],
"rationale": "A promise creates an obligation in the narrative graph.",
"tags": [
"hook",
"payoff"
]
}