An agentic workflow is a durable execution structure in which AI interprets a goal, chooses the next valid action, uses scoped context and tools, and records the result until the acceptance criteria are met.
The workflow becomes agentic at its decision points. The AI may decide which evidence matters, whether a planned step is still necessary, how to recover from a failed check, or which reviewer finding belongs in the work. State storage, grant enforcement, payload validation, and audit records can remain mechanical.
That separation is useful because adding a model to a fixed chain does not automatically make the work agentic.
- 01Passes to next stage
Interview Capture
Decide whether first-hand operator context is needed, then ask only the useful journalist-style questions or record why the interview can be skipped.
- 02Passes to next stage
Research And Fact Collection
Use the operator intent, interview decision, any interview pack, and cleared sources to collect and organize facts before angle selection.
- 03Passes to next stage
Angle And Structure
Propose one to three piece ideas, select the structure, name target channels, and decide whether images are needed.
- 04Passes to next stage
Draft Canonical
Write the canonical piece in the adapted operator voice from the selected angle and evidence pack.
- 05Passes to next stage
Editorial Review
Run one compact review pass for factual support, prior-position consistency, voice, and channel form.
- 06Passes to next stage
Sanitization Review
Apply disclosure policy separately and fail closed on public-use risk.
- 07Passes to next stage
Produce Optional Images
Resolve the selected image set, generating assets only when the image plan requires provider-generated website or channel media.
- 08Passes to next stage
Render Channel Publication Jobs
Produce executable website, X, LinkedIn, and optional email publication payloads plus one channel-ready publication bundle from the canonical draft and…
- 09Passes to next stage
Finalize Content And Record
Finalize the reviewed canonical packet and durable memory, then prepare only the publication jobs permitted by publication_intent.
- 10Verified outcome
Execute Publication
Publish or stage only the jobs selected by publication_intent and target_channels, then record distribution results.
What makes a workflow agentic?
Fixed automation follows a known mapping: when this happens, do that. An agentic workflow is useful when the next valid action depends on meaning, evidence, or a changing situation.
Consider four decisions from a content workflow:
- Is an operator interview needed, or is the relevant experience already captured?
- Does the evidence support the proposed angle?
- Is a reviewer finding a blocker, a useful repair, a preference, or scope drift?
- Has the article met its terminal condition, or is a material claim still unresolved?
Those decisions need reasoning. The workflow still bounds the reasoning with named state, allowed actions, expected outputs, and a stopping rule. Human input is reserved for materially missing intent, authority, disclosure, or a consequential choice; it is not a checkpoint added to every stage.
What should the workflow contain?
A practical agentic workflow needs six things:
- Problem and outcome. Name the failure, friction, or decision AI should help with, the useful result, and the side-effect boundary.
- State and dependencies. Record what is pending, active, accepted, blocked, or complete, and which later work depends on it.
- Context, tools, and authority. Give each step the information and operations it needs without exposing unrelated history or broader access.
- Decision ownership. State what the orchestrator decides and which bounded responsibilities belong to specialist agents.
- Outputs, evidence, and acceptance. Define what each step must return, which claims need support, and how the result will be verified.
- Recovery and a terminal condition. Provide the next safe action for anticipated failures and a concrete definition of done.
These do not need to become six long prompt sections. Stable rules can stay in the workflow, project state, and tool contracts. The agent should receive the subset that changes its next decision.
What happens from request to result?
Imagine an operator asks a tool-using AI client to turn research and firsthand experience into an article. The conversation is only the starting point.
- The AI interprets the request, selects the relevant workflow, and adapts a concrete run plan for the topic, sources, channel, image intent, and publication boundary.
- The orchestrator reads the current state and chooses the next eligible step. It supplies the context and tools that step needs.
- Research, writing, and review agents handle bounded responsibilities. They return evidence, drafts, or findings rather than taking over the whole job.
- StackOS stores the plan, scopes each tool call, validates execution, and records the result. It does not choose the content strategy.
- The orchestrator adjudicates review findings against the accepted angle and evidence. Not every suggestion enters delivery.
- The run ends when the requested artifact exists, material claims are supported or explicitly unresolved, blocking findings are repaired, and verification passes. Publication runs only when it was requested and authorized.
The durable state matters as much as the steps. If research is incomplete, later work stays blocked. If a tool call fails, the receipt shows what happened. If the session changes, the next agent can recover the accepted state without replaying the whole conversation.
This is the model we are building and using in StackOS: the AI chooses the next step; StackOS persists the contract and execution record.
Where does the agentic judgment belong?
Our early mistake was to treat “agentic” as a reason to add more agents. Running the workflows exposed a different problem.
Fresh agents could often work around missing context. They read more files, inspected more tools, and reconstructed earlier decisions. They reached the result, but the workflow was spending their reasoning on state the system already knew.
Reviewers created another signal. They could always propose one more improvement. When the orchestrator accepted each suggestion, the job drifted beyond the agreed plan.
The useful refinements were clearer handoffs and stronger gatekeeping. Agents still reason about the work. The workflow carries known state, and the orchestrator decides which findings belong in delivery.
How is this different from a chatbot or fixed automation?
| Mode | Best for | How it adapts | What marks completion |
|---|---|---|---|
| Conversation | A question, explanation, or one-off draft | The model responds within the current context | A useful response is returned |
| Fixed automation | A stable trigger with a known action | Predetermined rules and branches | The configured action finishes |
| Agentic workflow | Multi-step work where evidence or state changes the next action | An agent reasons within a durable execution contract | Acceptance criteria and verification pass |
A conversation can call tools, and fixed automation can have many branches. The difference is whether the job needs adaptive judgment plus durable state across the run.
Where can agentic workflows be used?
Use an agentic workflow when:
- the outcome spans several dependent stages or sessions;
- the next step depends on evidence rather than a fixed rule;
- different responsibilities need different context or independent review;
- connected tools have side effects that require narrow authority and receipts;
- failure needs recovery and continuation rather than a full restart.
In engineering, test evidence may change the next implementation step. In content, source quality may change the angle and reviewer feedback must be gated against the brief. In support, an investigation may end in an answer or a structured delivery handoff. The domain changes; the operating problem is the same.
When should you use one?
Do not build one for every request. A normal conversation is enough for a quick question or one-off draft. Fixed automation is usually better for a deterministic transformation. A single explicit tool action does not need a ten-step workflow around it.
The workflow earns its cost when the work needs both judgment and continuity.
The shortest useful definition
An agentic workflow is durable, goal-directed work in which AI chooses the next valid action inside explicit boundaries for state, authority, evidence, verification, recovery, and completion.
For the surrounding roles, see AI agent vs. workflow vs. orchestrator. For the execution experience each agent needs, see agent experience.
Keep reading
Related guides.
AI agent vs. workflow vs. orchestrator: what is the difference?
A workflow stores the execution contract. Agents own bounded responsibilities. The orchestrator reasons about the whole job and gates feedback, exceptions, and drift.
Read the guideHow to use Codex, Claude Code, or Gemini CLI with the tools you already have
Keep your preferred AI client and existing business apps. Connect each client to the same durable project so plans, tool access, credentials, and receipts do not disappear with the chat.
Read the guide