mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 15:47:20 +00:00
4 lines
1.5 KiB
JSON
4 lines
1.5 KiB
JSON
{"kind":"header","version":1,"testName":"recording","recordedAt":"2026-04-13T08:39:07.586Z"}
|
|
{"kind":"tool-call","stepId":1,"agentRole":"orchestrator","toolName":"build-workflow-with-agent","input":{"task":"Build a simple workflow with a Manual Trigger node connected to a Set node. The Set node should be named \"node execution test\". No specific fields need to be set in the Set node — just the default configuration is fine.","conversationContext":"User wants a simple workflow: Manual Trigger → Set node named \"node execution test\"."},"output":{"result":"Workflow build started (task: build-twaOsZ37). Reply with one short sentence — e.g. name what's being built. Do NOT summarize the plan or list details.","taskId":"build-twaOsZ37"}}
|
|
{"kind":"tool-call","stepId":2,"agentRole":"workflow-builder","toolName":"build-workflow","input":{"code":"\nimport { workflow, node, trigger } from '@n8n/workflow-sdk';\n\nconst manualTrigger = trigger({\n type: 'n8n-nodes-base.manualTrigger',\n version: 1,\n config: { name: 'Manual Trigger' }\n});\n\nconst setNode = node({\n type: 'n8n-nodes-base.set',\n version: 3.4,\n config: {\n name: 'node execution test',\n parameters: {\n assignments: { assignments: [] },\n options: {}\n }\n }\n});\n\nexport default workflow('manual-to-set', 'Manual Trigger to Set Node')\n .add(manualTrigger)\n .to(setNode);\n","name":"Manual Trigger to Set Node"},"output":{"success":true,"workflowId":"XSZxWGVsBUyJgeN4"}}
|
|
{"kind":"header","version":1,"testName":"recording","recordedAt":"2026-04-13T08:39:26.951Z"}
|