Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/use/workflows.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Each step supports several optional execution control properties:
| Property | Evaluated at | Purpose |
|---|---|---|
| `Condition` | Plan time | Include or skip the step based on request/intent data. |
| `Preconditions` | Execution time (runtime) | Guard the step against stale or unsafe state immediately before it runs. See [Runtime Preconditions](preconditions.md). |
| `Preconditions` | Execution time (runtime) | Guard the step against stale or unsafe state immediately before it runs. See [Runtime Preconditions](workflows/preconditions.md). |
| `OnFailureSteps` | After failure (workflow-level) | Cleanup/rollback steps run after a primary step fails. |

---
Expand Down Expand Up @@ -175,6 +175,6 @@ For full definitions and reference, see:

## Next steps

- Add runtime safety guards: [Runtime Preconditions](preconditions.md)
- Add runtime safety guards: [Runtime Preconditions](workflows/preconditions.md)
- Map external systems: [Providers](providers.md)
- Review and export plans: [Plan Export](plan-export.md) (e.g. for CI systems)
Original file line number Diff line number Diff line change
Expand Up @@ -221,5 +221,5 @@ affect any other steps.

## Reference

- [Steps reference](../reference/steps.md)
- [Concepts: Plan → Execute separation](../about/concepts.md)
- [Steps reference](../../reference/steps.md)
- [Concepts: Plan → Execute separation](../../about/concepts.md)
11 changes: 9 additions & 2 deletions website/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,15 @@ const sidebars = {
'use/walkthrough/05-providers-authentication',
],
},
'use/workflows',
'use/preconditions',
{
type: 'category',
label: 'Workflows',
collapsed: true,
items: [
'use/workflows',
'use/workflows/preconditions',
Comment thread
blindzero marked this conversation as resolved.
],
},
'use/providers',
'use/plan-export',
],
Expand Down