Skip to main content

Regulated Workflow Matrix

This page maps common regulated AI workflows to the technical controls engineers usually implement with Briefcase AI.

Workflow Matrix

WorkflowTypical Inputs / Versioned ArtifactsDecision Trace FieldsReplay / Debug LoopHuman Review Trigger
Onboarding / KYCIdentity docs, policy/rule set commit, scoring configdecision_id, model/version, confidence, artifact commit refsRe-run onboarding decisions after policy/model changesLow confidence, conflicting signals, unresolved references
Sanctions ScreeningWatchlist snapshot commit, matching thresholds, screening configmatch score, threshold, list commit, route outcomeReplay match decisions against historical list/config stateBorderline match score or policy override
Fraud DecisioningTransaction features, fraud model version, risk policy commitrisk score, threshold, action, feature snapshotCompare historical decisions after model update or drift alertScore in review band, anomaly flags
AML AlertingRule configuration version, monitoring parameters, entity contextalert reason codes, rule version, escalation pathReconstruct why alerts were generated/suppressed at a point in timeHigh-risk or unresolved alert rationale
Credit / UnderwritingApplication features, policy version, model configdecision class, confidence, feature set version, reason codesReplay denials/approvals after rule or model revisionLow confidence, policy-exception request
Real-Time Payment RoutingRouting model version, risk rules, operational configurationroute decision, confidence, latency bucket, policy refsRe-run routing decisions for disputes or post-incident analysisConfidence below threshold or high-impact transaction

Implementation Pattern

For each workflow, a common implementation sequence is:

  1. Resolve and attach versioned artifact references.
  2. Capture decision input/output metadata with confidence.
  3. Persist immutable trace records.
  4. Expose retrieval and replay endpoints for operations/audit.
  5. Route low-confidence outcomes to structured human review.

Engineering Checklist

  • Stable function_name values for replay comparability.
  • Commit-linked artifact references on every decision.
  • Confidence and decision-route tags for triage.
  • Replay checks in deployment validation workflows.
  • Policy-driven routing thresholds managed as config.

Next Steps