Workflows
Node Types
The 7 supported node types in Ask Sage Agent Builder workflows.
AutoFlow supports 7 node types defined in the workflow schema. Each type has specific config fields and produces specific outputs.
Node Types Reference
Node Conventions
Identity Model on Disk (v1, real Ask Sage)
On-disk template workflows are real Ask Sage v1 exports:
| Field | Format | Example | Purpose |
|---|---|---|---|
id | snake_case or kebab-case string | "intake" | Edge wiring, variable references |
slug | snake_case (optional) | "intake" | AWC convenience field — Agent Builder ignores it |
label | Free text | "Intake" | Human-readable display name |
- All on-disk variable references use
{{node_id.response}}syntax against the raw node id - The optional
slugis an AWC-only convenience and is not consumed by Agent Builder - Positions define visual placement in the canvas (
xandybetween -10000 and 10000)
Node Registry
All 7 node types are defined in the node registry (node_registry/asksage_nodes.yaml), which is the single source of truth for parameters, handles, and constraints. Per-node JSON Schemas are auto-generated from the registry into schemas/nodes/.
AWC-Internal v2 Format
AWC has an internal v2 format (UUID id + slug) used during pipeline execution and validation. It is never written to disk for templates. See Schema Validation for details.