Deterministic Workflow orchestration over Pixir Subagents.
A Workflow is a bounded plan of Subagent steps with explicit dependency edges and write-set metadata. It is deliberately a runtime scheduler over ADR 0011 Subagents, not a second agent/session primitive.
The top-level Workflow result has a narrow terminal contract: "completed" means
every step produced a dependent-safe checkpoint, while "partial" means at least one
step needs retry, synthesis, inspection, or orchestrator input. Step-level
checkpoint_status values carry the detailed truth ("held", "failed",
"partial", "needs_orchestrator", or "checkpoint_ready").
Summary
Functions
Step checkpoint statuses that classify completion, partial evidence, and holds.
Validate a Workflow and return its normalized execution plan without running it.
Named proof states a Workflow dry-run can prove without spawning Subagents.
Named proof states for a Workflow that produced an honest partial outcome.
Named proof states used by dry-runs, smoke tasks, and completion audits.
Run a Workflow by scheduling its steps through Pixir.Subagents.
Top-level Workflow result statuses.
Functions
@spec checkpoint_statuses() :: [String.t()]
Step checkpoint statuses that classify completion, partial evidence, and holds.
Validate a Workflow and return its normalized execution plan without running it.
@spec dry_run_proof_states() :: [String.t()]
Named proof states a Workflow dry-run can prove without spawning Subagents.
@spec partial_proof_states() :: [String.t()]
Named proof states for a Workflow that produced an honest partial outcome.
@spec proof_states() :: [String.t()]
Named proof states used by dry-runs, smoke tasks, and completion audits.
Run a Workflow by scheduling its steps through Pixir.Subagents.
@spec workflow_statuses() :: [String.t()]
Top-level Workflow result statuses.