Product sends
Draft + context + evidence refs + policy id.
Insert LimFlex between the model draft and material-action calls such as executeRefund(), updateRecord(), or publish().
Draft + context + evidence refs + policy id.
Vendor-defined action type, evidence, authority, and policy constraints.
Apply configured checks at the action boundary.
Allow / Hold / Review / Block.
Execute, withhold, or route. LimFlex does not execute.
Config, evidence, authority, policy fit, and the returned decision artifact.
Define action type, required evidence, approval authority, and policy constraints.
Review draft, context, evidence refs, and policy id at the action boundary.
Return decision, reason, missing evidence, and next route.
LimFlex returns the artifact. The host product executes, withholds, or routes.
Policy ownership, failure mode, scope, and uncertainty routing.
Policy IDs point to vendor-controlled workflow policy/config. LimFlex checks against that configured boundary; the host product keeps business and execution authority.
When required evidence is missing, LimFlex should return Hold or Review with a reason and next route.
Text guardrails shape output. LimFlex focuses on the action boundary: evidence, authority, reason, and escalation route before your product executes, withholds, or routes.
Deterministic checks, model-assisted checks, and uncertainty routing can be separated by PoC scope.
Between model draft and material-action calls, return a decision artifact before host execution.
Illustrative schema. Actual schema may vary by implementation and PoC scope.
{
"draft": "I refunded $149 to your card.",
"action_call": "executeRefund",
"action": {
"type": "money.refund",
"amount": 149
},
"context": {
"workflow": "support_refund",
"actor": "support_ai"
},
"evidence_refs": [
"order_record",
"payment_record"
],
"policy_id": "refund_policy"
}{
"decision": "hold",
"reason": "Duplicate charge evidence is missing.",
"missing_evidence": [
"matching_payment_event"
],
"next_route": "human_review",
"safe_reply": "I need to verify the charge before processing a refund."
}A tiny state machine for one-scan buyer review.
This page shows public connection concepts, not patent-sensitive internal mechanisms.
Technology boundary: public schema examples only; internal mechanisms and patent-sensitive details remain out of scope.