← Back to Explorer

Agentic Workflow

/workflow
A structured, multi-step sequence of skills, decisions, and gates that a human or orchestrating agent runs to complete a complex goal. Workflows compose skills; skills do not compose workflows.
Strata: L3, L4 Axes: Orchestration Status: seed

Explainer

A workflow is the agentic equivalent of a runbook or a pipeline. Where a skill does one thing, a workflow sequences many things: grill the user, check what exists, research options, select, install, integrate, smoke test, log. Each phase may invoke one or more skills, surface a gate for human confirmation, or branch based on findings.

In the {a}OS workspace, workflows live in 0.agentic/Workflows/ as Markdown files with numbered phases. An agent reads the workflow file and executes it step by step, calling skills as subroutines and waiting at explicit human-confirmation gates.

Skill vs Workflow — when to use which

Use a Skill when…Use a Workflow when…
The task is self-contained and repeatableThe task has multiple phases with decisions between them
Input → output, single concernRequires human confirmation at one or more gates
Can be invoked as a subroutineSequences multiple skills in a defined order
Example: /sentinel, /humanizerExample: /acquire-skill, /li-crucible

Workflow anatomy

Anti-Patterns

Related Concepts