Action Execution Framework v1

Convert decisions into trackable operational actions.

0

Pending

0

Awaiting Review

0

In Progress

0

Completed

Centralized Action Layer

Action Queue

Supervisor Action Approval Layer

Selected Action

Select an action from the queue to inspect approval posture, risk, and governance links.

Replayable Operational History

Execution Timeline

Governance Linkage

Action Object Schema

{
  actionId: string,
  originModule: "EZScore" | "Supervisor Override" | "Routing Queue" | "Workflow Health",
  triggerSource: string,
  assignedUser: string,
  priority: "Low" | "Medium" | "High" | "Critical",
  riskLevel: "Low" | "Moderate" | "High",
  requiredApproval: boolean,
  status: "Pending" | "Awaiting Review" | "In Progress" | "Escalated" | "Completed" | "Failed/Blocked",
  governanceLinks: {
    overrideId: string,
    chainOfCustodyId: string,
    replaySummaryId: string,
    packetPrepId: string
  },
  timeline: ActionTimelineEvent[]
}