Production rules · Transcript
TXT-002
Hard rule priority 100 domain: transcript meaning polarity
Rationale
Removing or separating negation can reverse the proposition.
IF — conditions (all must hold)
- edit.negation_near_boundary eq true
THEN — actions
- add_flag "NEGATION_AT_EDIT_BOUNDARY"
- require_human "verify_polarity"
- 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": "TXT-002",
"domain": "transcript",
"priority": 100,
"hard": true,
"logic": "all",
"when": [
{
"path": "edit.negation_near_boundary",
"op": "eq",
"value": true
}
],
"then": [
{
"op": "add_flag",
"value": "NEGATION_AT_EDIT_BOUNDARY"
},
{
"op": "require_human",
"value": "verify_polarity"
},
{
"op": "block"
}
],
"rationale": "Removing or separating negation can reverse the proposition.",
"tags": [
"meaning",
"polarity"
]
}