Skip to content

Commit 8bdf618

Browse files
ouiliameclaude
andcommitted
docs: regenerate after staging merge — sim trigger, enrichment + logs blocks, re-shown DB integrations
Staging's #4941 added the Sim workspace-event trigger (hand-written page adopted into Core Triggers), the Enrichment and Logs blocks (category 'blocks' — added to NATIVE_RESOURCE_BLOCK_TYPES so they live in the integrations catalog like table/knowledge/memory), and re-categorized mysql/postgresql/sftp/smtp/ssh back to visible tools (their pages return to the catalog). Generator sets merged as the union of both sides (sim in HANDWRITTEN_TRIGGER_DOCS + SKIP_TRIGGER_PROVIDERS, enrichment in the icon allowlist). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent e8b5338 commit 8bdf618

8 files changed

Lines changed: 102 additions & 5 deletions

File tree

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
---
2+
title: Logs
3+
description: Query workflow runs and fetch run details
4+
---
5+
6+
import { BlockInfoCard } from "@/components/ui/block-info-card"
7+
8+
<BlockInfoCard
9+
type="logs_v2"
10+
color="#EAB308"
11+
/>
12+
13+
## Usage Instructions
14+
15+
Query workflow run logs in the current workspace with the same filters as the Logs page, returning matching run IDs. Fetch full details for a single run, including its trace spans.
16+
17+
18+
19+
## Actions
20+
21+
### `logs_query_runs`
22+
23+
Query workflow run logs in the current workspace with the full Logs-page filter set. Returns matching run IDs.
24+
25+
#### Input
26+
27+
| Parameter | Type | Required | Description |
28+
| --------- | ---- | -------- | ----------- |
29+
| `workflowIds` | string | No | Comma-separated workflow IDs to filter by |
30+
| `folderIds` | string | No | Comma-separated folder IDs to filter by \(descendants included\) |
31+
| `level` | string | No | Comma-separated statuses: 'info', 'error', 'running', 'pending', 'cancelled'. Omit for all. |
32+
| `triggers` | string | No | Comma-separated trigger types \(api, webhook, schedule, manual, chat, mcp, a2a, workflow, sim, …\) |
33+
| `startDate` | string | No | ISO 8601 timestamp; only runs at or after this time |
34+
| `endDate` | string | No | ISO 8601 timestamp; only runs at or before this time |
35+
| `search` | string | No | Free-text search across log fields |
36+
| `costOperator` | string | No | Cost comparison operator: '=', '&gt;', '&lt;', '&gt;=', '&lt;=', '!=' |
37+
| `costValue` | number | No | Cost threshold in credits, compared using costOperator |
38+
| `durationOperator` | string | No | Duration comparison operator: '=', '&gt;', '&lt;', '&gt;=', '&lt;=', '!=' |
39+
| `durationValue` | number | No | Duration threshold in milliseconds, compared using durationOperator |
40+
| `limit` | number | No | Max run IDs to return \(default 100, max 200\) |
41+
| `sortBy` | string | No | Sort field: 'date' \(default\), 'duration', 'cost', 'status' |
42+
| `sortOrder` | string | No | Sort order: 'desc' \(default\) or 'asc' |
43+
44+
#### Output
45+
46+
| Parameter | Type | Description |
47+
| --------- | ---- | ----------- |
48+
| `runIds` | array | IDs of the runs matching the filters |
49+
50+
### `logs_get_run_details`
51+
52+
Fetch details for a single workflow run by its run ID, including the full trace spans.
53+
54+
#### Input
55+
56+
| Parameter | Type | Required | Description |
57+
| --------- | ---- | -------- | ----------- |
58+
| `runId` | string | Yes | The run ID to fetch details for |
59+
60+
#### Output
61+
62+
| Parameter | Type | Description |
63+
| --------- | ---- | ----------- |
64+
| `runId` | string | The run ID |
65+
| `workflowId` | string | Workflow ID this run belongs to |
66+
| `workflowName` | string | Workflow name |
67+
| `status` | string | Run status |
68+
| `trigger` | string | How the run was triggered |
69+
| `startedAt` | string | Run start time \(ISO 8601\) |
70+
| `durationMs` | number | Run duration in milliseconds |
71+
| `cost` | number | Run cost in credits |
72+
| `traceSpans` | array | Full trace spans for the run |
73+
| `finalOutput` | json | Final output of the run |
74+
75+

apps/docs/content/docs/en/integrations/meta.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@
113113
"linkedin",
114114
"linkup",
115115
"linq",
116+
"logs",
116117
"loops",
117118
"luma",
118119
"mailchimp",
@@ -128,6 +129,7 @@
128129
"mistral_parse",
129130
"monday",
130131
"mongodb",
132+
"mysql",
131133
"neo4j",
132134
"neverbounce",
133135
"new_relic",
@@ -145,6 +147,7 @@
145147
"pinecone",
146148
"pipedrive",
147149
"polymarket",
150+
"postgresql",
148151
"posthog",
149152
"profound",
150153
"prospeo",
@@ -172,12 +175,16 @@
172175
"serper",
173176
"servicenow",
174177
"ses",
178+
"sftp",
175179
"sharepoint",
176180
"shopify",
181+
"sim_workspace_event",
177182
"similarweb",
178183
"sixtyfour",
179184
"slack",
185+
"smtp",
180186
"sqs",
187+
"ssh",
181188
"stagehand",
182189
"stripe",
183190
"sts",

apps/docs/content/docs/en/integrations/mysql.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Integrate MySQL into the workflow. Can query, insert, update, delete, and execut
1616

1717

1818

19-
## Tools
19+
## Actions
2020

2121
### `mysql_query`
2222

apps/docs/content/docs/en/integrations/postgresql.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Integrate PostgreSQL into the workflow. Can query, insert, update, delete, and e
1616

1717

1818

19-
## Tools
19+
## Actions
2020

2121
### `postgresql_query`
2222

apps/docs/content/docs/en/integrations/sftp.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Upload, download, list, and manage files on remote servers via SFTP. Supports bo
1616

1717

1818

19-
## Tools
19+
## Actions
2020

2121
### `sftp_upload`
2222

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
title: Sim
3+
description: Run this workflow when workspace events occur: execution errors or successes, deployments, and alert conditions like latency or cost spikes.
4+
---
5+
6+
import { BlockInfoCard } from "@/components/ui/block-info-card"
7+
8+
<BlockInfoCard
9+
type="sim_workspace_event"
10+
color="#33C482"
11+
/>
12+
13+
14+
15+

apps/docs/content/docs/en/integrations/smtp.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Send emails using any SMTP server (Gmail, Outlook, custom servers, etc.). Config
1616

1717

1818

19-
## Tools
19+
## Actions
2020

2121
### `smtp_send_mail`
2222

apps/docs/content/docs/en/integrations/ssh.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Execute commands, transfer files, and manage remote servers via SSH. Supports pa
1616

1717

1818

19-
## Tools
19+
## Actions
2020

2121
### `ssh_execute_command`
2222

0 commit comments

Comments
 (0)