Common Node Fields
These fields are available on all node types. They provide shared functionality for node identification, conditional execution, thread management, and output handling.| Field | Type | Required | Description |
|---|---|---|---|
id | string | Yes | |
type | string | Yes | |
condition | string | No | |
timeout | string | No | |
save_message | SaveMessageConfig | No |
Thread Configuration
Thethread field controls conversation context:
Conditional Execution
Usecondition to skip nodes based on runtime state:
Automatic Message Saving
Usesave_message to capture output without a separate save_message node:
Agent
Invoke an agent or sub-workflowInputs
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
ref | string | No | - | Workflow reference (builtin://name or project://name) |
args | map | No | - | Input values for the sub-workflow |
presets | map | No | - | Preset configurations for sub-workflow inputs |
Approval
Pause workflow execution for user approvalInputs
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
title | string | No | - | Approval dialog title |
timeout | string | No | - | How long to wait for approval |
Outputs
| Field | Type | Description |
|---|---|---|
approval_id | string | - |
status | string | - |
action_taken | string | - |
Call LLM
Send a prompt to a language model and get a responseInputs
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
model | model | No | - | Model selector using tags (e.g. flagship) or explicit ID |
temperature | number | No | 0.7 | Temperature (0-1) controls randomness (range: 0-2) |
thinking_level | string | No | none | Extended thinking level for complex reasoning (enum: none|low|medium|high|xhigh) |
system_prompt | string | No | - | System message for this LLM call |
tool_filter | array | No | - | Filter which tools are available. Use tool names, glob patterns (edit*), tags (tag:search), or !exclusions (!bash). |
Outputs
| Field | Type | Description |
|---|---|---|
response_text | string | - |
token_count | integer | - |
upstream_request_id | string | - |
upstream_proxyman_id | string | - |
Compact
Compact conversation context to reduce token usageCreate Worktree
Create a git worktree for isolated developmentInputs
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
name | string | No | - | Worktree name, used in path |
base_branch | string | No | - | Base branch to branch from |
copy_files | string | No | - | Files to copy from source repo (e.g. .env) |
force | boolean | No | - | Force creation by deleting existing worktree |
Outputs
| Field | Type | Description |
|---|---|---|
id | string | - |
name | string | - |
path | string | - |
branch | string | - |
base_branch | string | - |
repo_id | string | - |
status | string | - |
Delete Worktree
Delete a git worktree and clean up its resourcesInputs
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
name | string | Yes | - | - |
Outputs
| Field | Type | Description |
|---|---|---|
deleted | boolean | - |
Execute Tools
Execute tool calls from an LLM responseInputs
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
tool_calls | string | No | - | CEL expression for tool calls to execute |
Outputs
| Field | Type | Description |
|---|---|---|
thread_token_count | integer | - |
total_result_chars | integer | - |
Run Command
Execute a shell commandInputs
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
command | string | No | - | Shell command to execute |
Outputs
| Field | Type | Description |
|---|---|---|
exit_code | integer | - |
stdout | string | - |
stderr | string | - |
Save Message
Save a message to the conversation threadInputs
| Field | Type | Required | Default | Description |
|---|---|---|---|---|
role | string | No | - | Message role (enum: user|assistant|system|tool) |
content | string | No | - | Message content |
tool_calls | string | No | - | Tool calls from LLM response |
display_style | string | No | - | UI display style hint (enum: info|warning|success|hidden) |
Outputs
| Field | Type | Description |
|---|---|---|
message | object | - |
message.id | string | |
message.role | string | |
message.text | string | |
message_id | string | - |
thread | string | - |
tool_calls | array | - |
tool_calls[].id | string | |
tool_calls[].name | string | |
tool_calls[].input | string | |
tool_results | array | - |
tool_results[].tool_call_id | string | |
tool_results[].name | string | |
tool_results[].content | string | |
tool_results[].is_error | bool | |
thread_token_count | integer | - |
message_count | integer | - |