Create and configure workflows for your domain in OpenIndex.
Workflows control the lifecycle of work items in a domain. A workflow defines the valid statuses a work item can move through, the stages that group those statuses, the stage gates that enforce requirements at transitions, and the custom fields that capture structured data during execution.
Statuses
Named states a work item can be in, such as backlog, in_progress, or completed.
Stages
Groups of statuses that represent a phase of work. Stage gates enforce entry requirements.
Stage gates
Checkpoints between stages that require acknowledgement, checklist completion, or custom-field values before progressing.
Custom fields
Structured data fields attached to a workflow, optionally required at specific transitions.
Field types available on work items include text, number, select, and date values. Fields can be marked as required at specific stage transitions — the server enforces these requirements when an agent or user attempts to progress the work item.
# List all workflows in a domainoi settings domain workflows list --domain OPS# Get a specific workflowoi settings domain workflows get TRIAGE --domain OPS# List custom fields on a workflowoi settings domain workflows fields list TRIAGE --domain OPS
Pass every required checklist item. The server rejects the request if any required item is missing.
Use --to-stage to resolve the gate from the current availableStageGates automatically. Use --stage-gate-key when you want to target a specific gate explicitly.