You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sandbox export keeps the code's result; --trigger implies --manual; deps mock skeleton; run tools lift the terminal output and take select; lint all-clear names what it checked; docs chunker keeps code spans
Copy file name to clipboardExpand all lines: apps/docs/content/docs/cli/reference.mdx
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3096,7 +3096,7 @@ sim tables groups create <tableId> [options]
3096
3096
| Option | Required | Description |
3097
3097
| --- | --- | --- |
3098
3098
|`--group <json\|@file>`| Yes | Workflow or enrichment producer definition. (JSON, or @path / @- to read a file or stdin). |
3099
-
|`--output-columns <json\|@file>`|Yes| Columns created for producer outputs. (JSON, or @path / @- to read a file or stdin). |
3099
+
|`--output-columns <json\|@file>`|No| Columns to create for producer outputs. An entry naming a column the table already has attaches that column to the group instead of creating it (its `type` must match), and an output whose column already exists may omit its entry entirely — so `[]` attaches existing columns only. (JSON, or @path / @- to read a file or stdin). |
3100
3100
|`--auto-run`| No | Whether to schedule existing rows after group creation. |
3101
3101
|`--no-auto-run`| No | Send --auto-run as false. |
3102
3102
@@ -3638,7 +3638,7 @@ sim tables dispatches get <tableId> <dispatchId>
3638
3638
3639
3639
### sim tables dispatches list
3640
3640
3641
-
List Active Run Dispatches
3641
+
List Run Dispatches
3642
3642
3643
3643
```bash
3644
3644
sim tables dispatches list <tableId>
@@ -5157,14 +5157,14 @@ sim workflows run <workflowId> [options]
5157
5157
|`--input <json\|@file>`| No | Trigger input as JSON (JSON, or @path / @- to read a file or stdin). |
5158
5158
|`--async`| No | Queue the run and return immediately. |
5159
5159
|`--execution-timeout-seconds <value>`| No | Requested server-side timeout for an asynchronous run, in seconds. An upper bound, not the effective timeout: the run uses the smaller of this value and the plan's execution timeout, so requesting more than the plan allows silently yields the plan timeout. Rejected with `400` unless `async` is true. |
5160
-
|`--select-output <value...>`| No | Return blockName.field values (e.g. agent_1.content), or childWorkflowId.blockName.field for a child workflow (applies to every invocation) — in blockOutputs on a sync run, or from the streamed result with --follow; missing fields are omitted. Not available with --async (space-separated, or @path / @- with one value per line; @@value for a literal leading @). |
5160
+
|`--select-output <value...>`| No | Return blockName.path values (e.g. agent_1.content), or childWorkflowId.blockName.path for a child workflow (applies to every invocation) — in blockOutputs on a sync run, or from the streamed result with --follow; missing paths are omitted. Not available with --async (space-separated, or @path / @- with one value per line; @@value for a literal leading @). |
5161
5161
|`--include-file-base64`| No | Inline eligible output files as base64 content. Rejected when `async` is true. |
5162
5162
|`--no-include-file-base64`| No | Send --include-file-base64 as false. |
5163
5163
|`--base64-max-bytes <value>`| No | Maximum total bytes of file content to inline as base64, lowering but never raising the server limit of 16 MiB. Rejected when `async` is true. |
5164
5164
|`--run-id <value>`| No | One-shot identifier for this run; NOT an idempotency key — reusing a claimed value fails with RUN_ID_CONFLICT instead of replaying the first result, and a fresh value starts another run. |
5165
5165
|`--manual`| No | Run the current saved workflow state instead of the active deployment. |
5166
-
|`--trigger <blockId>`| No | Enter a manual run through this runnable trigger (requires --manual). |
5167
-
|`--mock-payload`| No | Use the selected trigger's server-derived mock payload (requires --manual). |
5166
+
|`--trigger <blockId>`| No | Enter the run through this runnable trigger; runs the current saved workflow state (implies --manual). |
5167
+
|`--mock-payload`| No | Use the selected trigger's server-derived mock payload; runs the current saved workflow state (implies --manual). |
5168
5168
|`--from-block <blockId>`| No | Run manually from this saved workflow block. |
5169
5169
|`--source-run <runId>`| No | Prior run whose persisted state supplies upstream outputs (requires --from-block). |
5170
5170
|`--follow`| No | Stream the run as it happens; progress on stderr, result on stdout. The stream reports only success and output, so the result omits the run id and timings a non-streaming run returns. |
Copy file name to clipboardExpand all lines: apps/docs/content/docs/cli/tables.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -112,7 +112,7 @@ sim tables groups create <tableId> [options]
112
112
| Option | Required | Description |
113
113
| --- | --- | --- |
114
114
|`--group <json\|@file>`| Yes | Workflow or enrichment producer definition. (JSON, or @path / @- to read a file or stdin). |
115
-
|`--output-columns <json\|@file>`|Yes| Columns created for producer outputs. (JSON, or @path / @- to read a file or stdin). |
115
+
|`--output-columns <json\|@file>`|No| Columns to create for producer outputs. An entry naming a column the table already has attaches that column to the group instead of creating it (its `type` must match), and an output whose column already exists may omit its entry entirely — so `[]` attaches existing columns only. (JSON, or @path / @- to read a file or stdin). |
116
116
|`--auto-run`| No | Whether to schedule existing rows after group creation. |
117
117
|`--no-auto-run`| No | Send --auto-run as false. |
118
118
@@ -614,7 +614,7 @@ sim tables dispatches get <tableId> <dispatchId>
Copy file name to clipboardExpand all lines: apps/docs/content/docs/cli/workflows.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -532,14 +532,14 @@ sim workflows run <workflowId> [options]
532
532
|`--input <json\|@file>`| No | Trigger input as JSON (JSON, or @path / @- to read a file or stdin). |
533
533
|`--async`| No | Queue the run and return immediately. |
534
534
|`--execution-timeout-seconds <value>`| No | Requested server-side timeout for an asynchronous run, in seconds. An upper bound, not the effective timeout: the run uses the smaller of this value and the plan's execution timeout, so requesting more than the plan allows silently yields the plan timeout. Rejected with `400` unless `async` is true. |
535
-
|`--select-output <value...>`| No | Return blockName.field values (e.g. agent_1.content), or childWorkflowId.blockName.field for a child workflow (applies to every invocation) — in blockOutputs on a sync run, or from the streamed result with --follow; missing fields are omitted. Not available with --async (space-separated, or @path / @- with one value per line; @@value for a literal leading @). |
535
+
|`--select-output <value...>`| No | Return blockName.path values (e.g. agent_1.content), or childWorkflowId.blockName.path for a child workflow (applies to every invocation) — in blockOutputs on a sync run, or from the streamed result with --follow; missing paths are omitted. Not available with --async (space-separated, or @path / @- with one value per line; @@value for a literal leading @). |
536
536
|`--include-file-base64`| No | Inline eligible output files as base64 content. Rejected when `async` is true. |
537
537
|`--no-include-file-base64`| No | Send --include-file-base64 as false. |
538
538
|`--base64-max-bytes <value>`| No | Maximum total bytes of file content to inline as base64, lowering but never raising the server limit of 16 MiB. Rejected when `async` is true. |
539
539
|`--run-id <value>`| No | One-shot identifier for this run; NOT an idempotency key — reusing a claimed value fails with RUN_ID_CONFLICT instead of replaying the first result, and a fresh value starts another run. |
540
540
|`--manual`| No | Run the current saved workflow state instead of the active deployment. |
541
-
|`--trigger <blockId>`| No | Enter a manual run through this runnable trigger (requires --manual). |
542
-
|`--mock-payload`| No | Use the selected trigger's server-derived mock payload (requires --manual). |
541
+
|`--trigger <blockId>`| No | Enter the run through this runnable trigger; runs the current saved workflow state (implies --manual). |
542
+
|`--mock-payload`| No | Use the selected trigger's server-derived mock payload; runs the current saved workflow state (implies --manual). |
543
543
|`--from-block <blockId>`| No | Run manually from this saved workflow block. |
544
544
|`--source-run <runId>`| No | Prior run whose persisted state supplies upstream outputs (requires --from-block). |
545
545
|`--follow`| No | Stream the run as it happens; progress on stderr, result on stdout. The stream reports only success and output, so the result omits the run id and timings a non-streaming run returns. |
0 commit comments