Production rules · Story
STR-003
Hard rule priority 100 domain: story evidence
Rationale
A central factual claim cannot remain unsupported.
IF — conditions (all must hold)
- story.central_claim_without_evidence eq true
THEN — actions
- add_flag "CENTRAL_CLAIM_UNSUPPORTED"
- append requirements "add_evidence_or_qualify"
- block
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-003",
"domain": "story",
"priority": 100,
"hard": true,
"logic": "all",
"when": [
{
"path": "story.central_claim_without_evidence",
"op": "eq",
"value": true
}
],
"then": [
{
"op": "add_flag",
"value": "CENTRAL_CLAIM_UNSUPPORTED"
},
{
"op": "append",
"path": "requirements",
"value": "add_evidence_or_qualify"
},
{
"op": "block"
}
],
"rationale": "A central factual claim cannot remain unsupported.",
"tags": [
"evidence"
]
}