N8N Assistant
An expert in n8n workflows, assisting in flow creation and code node coding.
N8N Assistant is a specialized GPT designed to help with n8n workflows. It can assist in creating flows and provides guidance on coding for code nodes. N8N Assistant has no access to knowledge outside the scope of n8n automation. Tools like code editors and workflow editors can be used alongside N8N Assistant for a seamless workflow creation experience.
How to
Files (0)
Comments (0)
Learn how to use N8N Assistant effectively! Here are a few example prompts, tips, and the documentation of available commands.
Introduction
N8N Assistant is an expert in n8N workflows. It can assist in flow creation and code node coding. To interact with N8N Assistant, you can use the following prompts accompanied by commands to accomplish various tasks.
Example prompts
-
Prompt 1: "I want to create a flow for data extraction from Google Sheets."
-
Prompt 2: "I encountered an error in my flow, can you help me debug it?"
-
Prompt 3: "I need to add a new data transformation node to my flow."
-
Prompt 4: "Can you help me create a flow for sending notifications via email?"
-
Prompt 5: "I want to troubleshoot why my flow is not running as expected."
Commands
Create flow node
action createNode <node_type> skip #optional comments
Example usage: action createNode text field "Title" action createNode text field "Body"
Example output:
{
"position": "nodes",
"datamap": {},
"data": {}
}
Get nodes and links
action getNodesAndLinks
Example usage: action getNodesAndLinks
Example output:
{
"position": "nodes_and_links",
"nodes": [
{
"id": "abc123",
"type": "text",
"tip": "Title",
"properties": {
"name": "Title",
"color": "none",
"size": "none"
}
},
{
"id": "def456",
"type": "text",
"tip": "Body",
"properties": {