[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-n8n-n8n-cli":3,"mdc--23i5fo-key":50,"related-repo-n8n-n8n-cli":4286,"related-org-n8n-n8n-cli":4381},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":45,"sourceUrl":48,"mdContent":49},"n8n-cli","manage n8n workflows from the CLI","Use the n8n CLI to manage workflows, credentials, executions, and more on an n8n instance. Use when the user asks to interact with n8n, automate workflows, manage credentials, or operate their instance from the command line.",{"slug":8,"name":8,"logoUrl":9,"githubOrg":10},"n8n","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fn8n.png","n8n-io",[12,14,17,20],{"name":8,"slug":8,"type":13},"tag",{"name":15,"slug":16,"type":13},"Automation","automation",{"name":18,"slug":19,"type":13},"CLI","cli",{"name":21,"slug":22,"type":13},"Workflow Automation","workflow-automation",198156,"https:\u002F\u002Fgithub.com\u002Fn8n-io\u002Fn8n","2026-04-06T18:38:40.360123",null,59655,[29,30,16,19,31,32,33,34,35,36,37,38,39,40,8,41,42,43,44,22],"ai","apis","data-flow","development","integration-framework","integrations","ipaas","low-code","low-code-platform","mcp","mcp-client","mcp-server","no-code","self-hosted","typescript","workflow",{"repoUrl":24,"stars":23,"forks":27,"topics":46,"description":47},[29,30,16,19,31,32,33,34,35,36,37,38,39,40,8,41,42,43,44,22],"Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.","https:\u002F\u002Fgithub.com\u002Fn8n-io\u002Fn8n\u002Ftree\u002FHEAD\u002Fpackages\u002F@n8n\u002Fcli\u002Fskills\u002Fn8n-cli","---\nname: n8n-cli\ndescription: Use the n8n CLI to manage workflows, credentials, executions, and more on an n8n instance. Use when the user asks to interact with n8n, automate workflows, manage credentials, or operate their instance from the command line.\nallowed-tools: Bash(n8n-cli:*), Bash(echo:*), Bash(cat:*), Read, Write\n---\n\n# n8n CLI\n\nThe `n8n-cli` command-line tool manages an n8n instance via its REST API.\nIt auto-detects piped output and switches to JSON, making it composable for scripts and LLM tool use.\n\n## Setup\n\n```bash\n# Interactive login (saves to ~\u002F.n8n-cli\u002Fconfig.json)\nn8n-cli login\n\n# Or configure directly\nn8n-cli config set-url https:\u002F\u002Fmy-instance.n8n.cloud\nn8n-cli config set-api-key n8n_api_...\n\n# Or use environment variables (no config file needed)\nexport N8N_URL=https:\u002F\u002Fmy-instance.n8n.cloud\nexport N8N_API_KEY=n8n_api_...\n```\n\n## Global Flags\n\nEvery command supports these flags:\n\n| Flag | Short | Description |\n|------|-------|-------------|\n| `--url` | `-u` | Instance URL (overrides config\u002Fenv) |\n| `--apiKey` | `-k` | API key (overrides config\u002Fenv) |\n| `--format` | `-f` | Output format: `table`, `json`, `id-only` |\n| `--json` | | Shorthand for `--format=json` |\n| `--jq` | | jq-style filter (implies `--json`), e.g. `'.[0].id'`, `'.[].name'` |\n| `--quiet` | `-q` | Suppress output |\n| `--no-header` | | Hide table headers (for `awk`\u002F`cut` parsing) |\n| `--debug` | | Print HTTP details to stderr |\n\n**Auto-JSON:** When stdout is piped (not a TTY), output defaults to JSON automatically.\n\n## Workflows\n\n```bash\n# List all workflows\nn8n-cli workflow list\n\n# Filter workflows\nn8n-cli workflow list --active\nn8n-cli workflow list --tag=production\nn8n-cli workflow list --name=\"My Workflow\"\nn8n-cli workflow list --limit=5\n\n# Get a single workflow (full JSON with nodes and connections)\nn8n-cli workflow get \u003Cid>\n\n# Extract just node names from a workflow\nn8n-cli workflow get \u003Cid> --jq '.nodes[].name'\n\n# Create a workflow from JSON\nn8n-cli workflow create --file=workflow.json\ncat workflow.json | n8n-cli workflow create --stdin\n\n# Update a workflow\nn8n-cli workflow update \u003Cid> --file=updated.json\ncat updated.json | n8n-cli workflow update \u003Cid> --stdin\n\n# Activate \u002F deactivate\nn8n-cli workflow activate \u003Cid>\nn8n-cli workflow deactivate \u003Cid>\n\n# Delete a workflow\nn8n-cli workflow delete \u003Cid>\n\n# Transfer to another project\nn8n-cli workflow transfer \u003Cid> --project=\u003CprojectId>\n\n# List tags on a workflow\nn8n-cli workflow tags \u003Cid>\n```\n\n## Executions\n\n```bash\n# List recent executions\nn8n-cli execution list\nn8n-cli execution list --workflow=\u003Cid> --status=error --limit=10\n# status options: canceled, error, running, success, waiting\n\n# Get execution details\nn8n-cli execution get \u003Cid>\nn8n-cli execution get \u003Cid> --include-data   # includes full node I\u002FO\n\n# Retry a failed execution\nn8n-cli execution retry \u003Cid>\n\n# Stop a running execution\nn8n-cli execution stop \u003Cid>\n\n# Delete an execution\nn8n-cli execution delete \u003Cid>\n```\n\n## Credentials\n\n```bash\n# List credentials\nn8n-cli credential list\n\n# Get credential metadata (not secrets)\nn8n-cli credential get \u003Cid>\n\n# Get the schema for a credential type (shows required fields)\nn8n-cli credential schema notionApi\nn8n-cli credential schema slackOAuth2Api\n\n# Create a credential\nn8n-cli credential create --type=notionApi --name='My Notion' --data='{\"apiKey\":\"...\"}'\nn8n-cli credential create --type=notionApi --name='My Notion' --file=cred.json\ncat cred.json | n8n-cli credential create --type=notionApi --name='My Notion' --stdin\n\n# Delete \u002F transfer\nn8n-cli credential delete \u003Cid>\nn8n-cli credential transfer \u003Cid> --project=\u003CprojectId>\n```\n\n**Tip:** Use `credential schema \u003Ctype>` to discover required fields before creating.\n\n## Projects\n\n```bash\nn8n-cli project list\nn8n-cli project get \u003Cid>\nn8n-cli project create --name=\"My Project\"\nn8n-cli project update \u003Cid> --name=\"New Name\"\nn8n-cli project delete \u003Cid>\n\n# Team management\nn8n-cli project members \u003Cid>\nn8n-cli project add-member \u003Cid> --user=\u003CuserId> --role=\u003Crole>\nn8n-cli project remove-member \u003Cid> --user=\u003CuserId>\n```\n\n## Tags\n\n```bash\nn8n-cli tag list\nn8n-cli tag create --name=production\nn8n-cli tag update \u003Cid> --name=staging\nn8n-cli tag delete \u003Cid>\n```\n\n## Variables\n\n```bash\nn8n-cli variable list\nn8n-cli variable create --key=API_ENDPOINT --value=https:\u002F\u002Fapi.example.com\nn8n-cli variable update \u003Cid> --key=API_ENDPOINT --value=https:\u002F\u002Fnew-api.example.com\nn8n-cli variable delete \u003Cid>\n```\n\n## Data Tables\n\n```bash\n# CRUD\nn8n-cli data-table list\nn8n-cli data-table get \u003Cid>\nn8n-cli data-table create --name=Inventory --columns='[{\"name\":\"item\",\"type\":\"string\"},{\"name\":\"qty\",\"type\":\"number\"}]'\nn8n-cli data-table delete \u003Cid>\n\n# Row operations\nn8n-cli data-table rows \u003Cid>\nn8n-cli data-table add-rows \u003Cid> --file=rows.json\nn8n-cli data-table update-rows \u003Cid> --file=rows.json\nn8n-cli data-table upsert-rows \u003Cid> --file=rows.json\nn8n-cli data-table delete-rows \u003Cid> --ids=row1,row2,row3\n\n# All row commands support --stdin\ncat rows.json | n8n-cli data-table add-rows \u003Cid> --stdin\n```\n\n## Users\n\n```bash\nn8n-cli user list\nn8n-cli user get \u003Cid>\n```\n\n## Other\n\n```bash\n# Security audit\nn8n-cli audit\nn8n-cli audit --categories=credentials,nodes\n\n# Source control\nn8n-cli source-control pull\n\n# View config\nn8n-cli config show\n```\n\n## Composability Patterns\n\nThe CLI is designed to be piped and composed:\n\n```bash\n# Get all workflow IDs\nn8n-cli workflow list --jq '.[].id'\n\n# Get the name of the first workflow\nn8n-cli workflow list --jq '.[0].name'\n\n# Export a workflow to a file\nn8n-cli workflow get 1234 --json > workflow-backup.json\n\n# Find failing executions for a workflow\nn8n-cli execution list --workflow=1234 --status=error --json\n\n# Pipe workflow JSON for modification\nn8n-cli workflow get 1234 --json | jq '.name = \"Updated Name\"' | n8n-cli workflow update 1234 --stdin\n\n# Table output without headers for shell parsing\nn8n-cli workflow list --no-header | awk '{print $1}'\n\n# Debug API calls\nn8n-cli workflow list --debug 2>debug.log\n```\n\n## Workflow JSON Structure\n\nWhen creating or updating workflows, the JSON follows this structure:\n\n```json\n{\n  \"name\": \"My Workflow\",\n  \"nodes\": [\n    {\n      \"name\": \"Start\",\n      \"type\": \"n8n-nodes-base.manualTrigger\",\n      \"position\": [250, 300],\n      \"parameters\": {}\n    },\n    {\n      \"name\": \"HTTP Request\",\n      \"type\": \"n8n-nodes-base.httpRequest\",\n      \"position\": [450, 300],\n      \"parameters\": {\n        \"url\": \"https:\u002F\u002Fapi.example.com\u002Fdata\",\n        \"method\": \"GET\"\n      }\n    }\n  ],\n  \"connections\": {\n    \"Start\": {\n      \"main\": [[{ \"node\": \"HTTP Request\", \"type\": \"main\", \"index\": 0 }]]\n    }\n  }\n}\n```\n\nKey points:\n- `nodes[].type` follows the pattern `n8n-nodes-base.\u003CnodeName>` for built-in nodes\n- `connections` is keyed by source node name, with `main` output arrays\n- Each connection specifies target `node`, `type` (usually `main`), and output `index`\n- Use `workflow get \u003Cid> --json` to see real examples from the instance\n",{"data":51,"body":53},{"name":4,"description":6,"allowed-tools":52},"Bash(n8n-cli:*), Bash(echo:*), Bash(cat:*), Read, Write",{"type":54,"children":55},"root",[56,64,78,85,253,259,264,543,554,560,1257,1263,1572,1578,1967,1985,1991,2319,2325,2435,2441,2560,2566,2953,2959,3013,3019,3126,3132,3137,3512,3518,3523,4191,4196,4280],{"type":57,"tag":58,"props":59,"children":60},"element","h1",{"id":4},[61],{"type":62,"value":63},"text","n8n CLI",{"type":57,"tag":65,"props":66,"children":67},"p",{},[68,70,76],{"type":62,"value":69},"The ",{"type":57,"tag":71,"props":72,"children":74},"code",{"className":73},[],[75],{"type":62,"value":4},{"type":62,"value":77}," command-line tool manages an n8n instance via its REST API.\nIt auto-detects piped output and switches to JSON, making it composable for scripts and LLM tool use.",{"type":57,"tag":79,"props":80,"children":82},"h2",{"id":81},"setup",[83],{"type":62,"value":84},"Setup",{"type":57,"tag":86,"props":87,"children":92},"pre",{"className":88,"code":89,"language":90,"meta":91,"style":91},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Interactive login (saves to ~\u002F.n8n-cli\u002Fconfig.json)\nn8n-cli login\n\n# Or configure directly\nn8n-cli config set-url https:\u002F\u002Fmy-instance.n8n.cloud\nn8n-cli config set-api-key n8n_api_...\n\n# Or use environment variables (no config file needed)\nexport N8N_URL=https:\u002F\u002Fmy-instance.n8n.cloud\nexport N8N_API_KEY=n8n_api_...\n","bash","",[93],{"type":57,"tag":71,"props":94,"children":95},{"__ignoreMap":91},[96,108,123,133,142,165,187,195,204,231],{"type":57,"tag":97,"props":98,"children":101},"span",{"class":99,"line":100},"line",1,[102],{"type":57,"tag":97,"props":103,"children":105},{"style":104},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[106],{"type":62,"value":107},"# Interactive login (saves to ~\u002F.n8n-cli\u002Fconfig.json)\n",{"type":57,"tag":97,"props":109,"children":111},{"class":99,"line":110},2,[112,117],{"type":57,"tag":97,"props":113,"children":115},{"style":114},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[116],{"type":62,"value":4},{"type":57,"tag":97,"props":118,"children":120},{"style":119},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[121],{"type":62,"value":122}," login\n",{"type":57,"tag":97,"props":124,"children":126},{"class":99,"line":125},3,[127],{"type":57,"tag":97,"props":128,"children":130},{"emptyLinePlaceholder":129},true,[131],{"type":62,"value":132},"\n",{"type":57,"tag":97,"props":134,"children":136},{"class":99,"line":135},4,[137],{"type":57,"tag":97,"props":138,"children":139},{"style":104},[140],{"type":62,"value":141},"# Or configure directly\n",{"type":57,"tag":97,"props":143,"children":145},{"class":99,"line":144},5,[146,150,155,160],{"type":57,"tag":97,"props":147,"children":148},{"style":114},[149],{"type":62,"value":4},{"type":57,"tag":97,"props":151,"children":152},{"style":119},[153],{"type":62,"value":154}," config",{"type":57,"tag":97,"props":156,"children":157},{"style":119},[158],{"type":62,"value":159}," set-url",{"type":57,"tag":97,"props":161,"children":162},{"style":119},[163],{"type":62,"value":164}," https:\u002F\u002Fmy-instance.n8n.cloud\n",{"type":57,"tag":97,"props":166,"children":168},{"class":99,"line":167},6,[169,173,177,182],{"type":57,"tag":97,"props":170,"children":171},{"style":114},[172],{"type":62,"value":4},{"type":57,"tag":97,"props":174,"children":175},{"style":119},[176],{"type":62,"value":154},{"type":57,"tag":97,"props":178,"children":179},{"style":119},[180],{"type":62,"value":181}," set-api-key",{"type":57,"tag":97,"props":183,"children":184},{"style":119},[185],{"type":62,"value":186}," n8n_api_...\n",{"type":57,"tag":97,"props":188,"children":190},{"class":99,"line":189},7,[191],{"type":57,"tag":97,"props":192,"children":193},{"emptyLinePlaceholder":129},[194],{"type":62,"value":132},{"type":57,"tag":97,"props":196,"children":198},{"class":99,"line":197},8,[199],{"type":57,"tag":97,"props":200,"children":201},{"style":104},[202],{"type":62,"value":203},"# Or use environment variables (no config file needed)\n",{"type":57,"tag":97,"props":205,"children":207},{"class":99,"line":206},9,[208,214,220,226],{"type":57,"tag":97,"props":209,"children":211},{"style":210},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[212],{"type":62,"value":213},"export",{"type":57,"tag":97,"props":215,"children":217},{"style":216},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[218],{"type":62,"value":219}," N8N_URL",{"type":57,"tag":97,"props":221,"children":223},{"style":222},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[224],{"type":62,"value":225},"=",{"type":57,"tag":97,"props":227,"children":228},{"style":216},[229],{"type":62,"value":230},"https:\u002F\u002Fmy-instance.n8n.cloud\n",{"type":57,"tag":97,"props":232,"children":234},{"class":99,"line":233},10,[235,239,244,248],{"type":57,"tag":97,"props":236,"children":237},{"style":210},[238],{"type":62,"value":213},{"type":57,"tag":97,"props":240,"children":241},{"style":216},[242],{"type":62,"value":243}," N8N_API_KEY",{"type":57,"tag":97,"props":245,"children":246},{"style":222},[247],{"type":62,"value":225},{"type":57,"tag":97,"props":249,"children":250},{"style":216},[251],{"type":62,"value":252},"n8n_api_...\n",{"type":57,"tag":79,"props":254,"children":256},{"id":255},"global-flags",[257],{"type":62,"value":258},"Global Flags",{"type":57,"tag":65,"props":260,"children":261},{},[262],{"type":62,"value":263},"Every command supports these flags:",{"type":57,"tag":265,"props":266,"children":267},"table",{},[268,292],{"type":57,"tag":269,"props":270,"children":271},"thead",{},[272],{"type":57,"tag":273,"props":274,"children":275},"tr",{},[276,282,287],{"type":57,"tag":277,"props":278,"children":279},"th",{},[280],{"type":62,"value":281},"Flag",{"type":57,"tag":277,"props":283,"children":284},{},[285],{"type":62,"value":286},"Short",{"type":57,"tag":277,"props":288,"children":289},{},[290],{"type":62,"value":291},"Description",{"type":57,"tag":293,"props":294,"children":295},"tbody",{},[296,323,349,395,421,461,487,523],{"type":57,"tag":273,"props":297,"children":298},{},[299,309,318],{"type":57,"tag":300,"props":301,"children":302},"td",{},[303],{"type":57,"tag":71,"props":304,"children":306},{"className":305},[],[307],{"type":62,"value":308},"--url",{"type":57,"tag":300,"props":310,"children":311},{},[312],{"type":57,"tag":71,"props":313,"children":315},{"className":314},[],[316],{"type":62,"value":317},"-u",{"type":57,"tag":300,"props":319,"children":320},{},[321],{"type":62,"value":322},"Instance URL (overrides config\u002Fenv)",{"type":57,"tag":273,"props":324,"children":325},{},[326,335,344],{"type":57,"tag":300,"props":327,"children":328},{},[329],{"type":57,"tag":71,"props":330,"children":332},{"className":331},[],[333],{"type":62,"value":334},"--apiKey",{"type":57,"tag":300,"props":336,"children":337},{},[338],{"type":57,"tag":71,"props":339,"children":341},{"className":340},[],[342],{"type":62,"value":343},"-k",{"type":57,"tag":300,"props":345,"children":346},{},[347],{"type":62,"value":348},"API key (overrides config\u002Fenv)",{"type":57,"tag":273,"props":350,"children":351},{},[352,361,370],{"type":57,"tag":300,"props":353,"children":354},{},[355],{"type":57,"tag":71,"props":356,"children":358},{"className":357},[],[359],{"type":62,"value":360},"--format",{"type":57,"tag":300,"props":362,"children":363},{},[364],{"type":57,"tag":71,"props":365,"children":367},{"className":366},[],[368],{"type":62,"value":369},"-f",{"type":57,"tag":300,"props":371,"children":372},{},[373,375,380,382,388,389],{"type":62,"value":374},"Output format: ",{"type":57,"tag":71,"props":376,"children":378},{"className":377},[],[379],{"type":62,"value":265},{"type":62,"value":381},", ",{"type":57,"tag":71,"props":383,"children":385},{"className":384},[],[386],{"type":62,"value":387},"json",{"type":62,"value":381},{"type":57,"tag":71,"props":390,"children":392},{"className":391},[],[393],{"type":62,"value":394},"id-only",{"type":57,"tag":273,"props":396,"children":397},{},[398,407,410],{"type":57,"tag":300,"props":399,"children":400},{},[401],{"type":57,"tag":71,"props":402,"children":404},{"className":403},[],[405],{"type":62,"value":406},"--json",{"type":57,"tag":300,"props":408,"children":409},{},[],{"type":57,"tag":300,"props":411,"children":412},{},[413,415],{"type":62,"value":414},"Shorthand for ",{"type":57,"tag":71,"props":416,"children":418},{"className":417},[],[419],{"type":62,"value":420},"--format=json",{"type":57,"tag":273,"props":422,"children":423},{},[424,433,436],{"type":57,"tag":300,"props":425,"children":426},{},[427],{"type":57,"tag":71,"props":428,"children":430},{"className":429},[],[431],{"type":62,"value":432},"--jq",{"type":57,"tag":300,"props":434,"children":435},{},[],{"type":57,"tag":300,"props":437,"children":438},{},[439,441,446,448,454,455],{"type":62,"value":440},"jq-style filter (implies ",{"type":57,"tag":71,"props":442,"children":444},{"className":443},[],[445],{"type":62,"value":406},{"type":62,"value":447},"), e.g. ",{"type":57,"tag":71,"props":449,"children":451},{"className":450},[],[452],{"type":62,"value":453},"'.[0].id'",{"type":62,"value":381},{"type":57,"tag":71,"props":456,"children":458},{"className":457},[],[459],{"type":62,"value":460},"'.[].name'",{"type":57,"tag":273,"props":462,"children":463},{},[464,473,482],{"type":57,"tag":300,"props":465,"children":466},{},[467],{"type":57,"tag":71,"props":468,"children":470},{"className":469},[],[471],{"type":62,"value":472},"--quiet",{"type":57,"tag":300,"props":474,"children":475},{},[476],{"type":57,"tag":71,"props":477,"children":479},{"className":478},[],[480],{"type":62,"value":481},"-q",{"type":57,"tag":300,"props":483,"children":484},{},[485],{"type":62,"value":486},"Suppress output",{"type":57,"tag":273,"props":488,"children":489},{},[490,499,502],{"type":57,"tag":300,"props":491,"children":492},{},[493],{"type":57,"tag":71,"props":494,"children":496},{"className":495},[],[497],{"type":62,"value":498},"--no-header",{"type":57,"tag":300,"props":500,"children":501},{},[],{"type":57,"tag":300,"props":503,"children":504},{},[505,507,513,515,521],{"type":62,"value":506},"Hide table headers (for ",{"type":57,"tag":71,"props":508,"children":510},{"className":509},[],[511],{"type":62,"value":512},"awk",{"type":62,"value":514},"\u002F",{"type":57,"tag":71,"props":516,"children":518},{"className":517},[],[519],{"type":62,"value":520},"cut",{"type":62,"value":522}," parsing)",{"type":57,"tag":273,"props":524,"children":525},{},[526,535,538],{"type":57,"tag":300,"props":527,"children":528},{},[529],{"type":57,"tag":71,"props":530,"children":532},{"className":531},[],[533],{"type":62,"value":534},"--debug",{"type":57,"tag":300,"props":536,"children":537},{},[],{"type":57,"tag":300,"props":539,"children":540},{},[541],{"type":62,"value":542},"Print HTTP details to stderr",{"type":57,"tag":65,"props":544,"children":545},{},[546,552],{"type":57,"tag":547,"props":548,"children":549},"strong",{},[550],{"type":62,"value":551},"Auto-JSON:",{"type":62,"value":553}," When stdout is piped (not a TTY), output defaults to JSON automatically.",{"type":57,"tag":79,"props":555,"children":557},{"id":556},"workflows",[558],{"type":62,"value":559},"Workflows",{"type":57,"tag":86,"props":561,"children":563},{"className":88,"code":562,"language":90,"meta":91,"style":91},"# List all workflows\nn8n-cli workflow list\n\n# Filter workflows\nn8n-cli workflow list --active\nn8n-cli workflow list --tag=production\nn8n-cli workflow list --name=\"My Workflow\"\nn8n-cli workflow list --limit=5\n\n# Get a single workflow (full JSON with nodes and connections)\nn8n-cli workflow get \u003Cid>\n\n# Extract just node names from a workflow\nn8n-cli workflow get \u003Cid> --jq '.nodes[].name'\n\n# Create a workflow from JSON\nn8n-cli workflow create --file=workflow.json\ncat workflow.json | n8n-cli workflow create --stdin\n\n# Update a workflow\nn8n-cli workflow update \u003Cid> --file=updated.json\ncat updated.json | n8n-cli workflow update \u003Cid> --stdin\n\n# Activate \u002F deactivate\nn8n-cli workflow activate \u003Cid>\nn8n-cli workflow deactivate \u003Cid>\n\n# Delete a workflow\nn8n-cli workflow delete \u003Cid>\n\n# Transfer to another project\nn8n-cli workflow transfer \u003Cid> --project=\u003CprojectId>\n\n# List tags on a workflow\nn8n-cli workflow tags \u003Cid>\n",[564],{"type":57,"tag":71,"props":565,"children":566},{"__ignoreMap":91},[567,575,592,599,607,628,648,683,703,710,718,755,763,772,825,833,842,864,901,909,918,956,1005,1013,1022,1055,1088,1096,1105,1138,1146,1155,1207,1215,1224],{"type":57,"tag":97,"props":568,"children":569},{"class":99,"line":100},[570],{"type":57,"tag":97,"props":571,"children":572},{"style":104},[573],{"type":62,"value":574},"# List all workflows\n",{"type":57,"tag":97,"props":576,"children":577},{"class":99,"line":110},[578,582,587],{"type":57,"tag":97,"props":579,"children":580},{"style":114},[581],{"type":62,"value":4},{"type":57,"tag":97,"props":583,"children":584},{"style":119},[585],{"type":62,"value":586}," workflow",{"type":57,"tag":97,"props":588,"children":589},{"style":119},[590],{"type":62,"value":591}," list\n",{"type":57,"tag":97,"props":593,"children":594},{"class":99,"line":125},[595],{"type":57,"tag":97,"props":596,"children":597},{"emptyLinePlaceholder":129},[598],{"type":62,"value":132},{"type":57,"tag":97,"props":600,"children":601},{"class":99,"line":135},[602],{"type":57,"tag":97,"props":603,"children":604},{"style":104},[605],{"type":62,"value":606},"# Filter workflows\n",{"type":57,"tag":97,"props":608,"children":609},{"class":99,"line":144},[610,614,618,623],{"type":57,"tag":97,"props":611,"children":612},{"style":114},[613],{"type":62,"value":4},{"type":57,"tag":97,"props":615,"children":616},{"style":119},[617],{"type":62,"value":586},{"type":57,"tag":97,"props":619,"children":620},{"style":119},[621],{"type":62,"value":622}," list",{"type":57,"tag":97,"props":624,"children":625},{"style":119},[626],{"type":62,"value":627}," --active\n",{"type":57,"tag":97,"props":629,"children":630},{"class":99,"line":167},[631,635,639,643],{"type":57,"tag":97,"props":632,"children":633},{"style":114},[634],{"type":62,"value":4},{"type":57,"tag":97,"props":636,"children":637},{"style":119},[638],{"type":62,"value":586},{"type":57,"tag":97,"props":640,"children":641},{"style":119},[642],{"type":62,"value":622},{"type":57,"tag":97,"props":644,"children":645},{"style":119},[646],{"type":62,"value":647}," --tag=production\n",{"type":57,"tag":97,"props":649,"children":650},{"class":99,"line":189},[651,655,659,663,668,673,678],{"type":57,"tag":97,"props":652,"children":653},{"style":114},[654],{"type":62,"value":4},{"type":57,"tag":97,"props":656,"children":657},{"style":119},[658],{"type":62,"value":586},{"type":57,"tag":97,"props":660,"children":661},{"style":119},[662],{"type":62,"value":622},{"type":57,"tag":97,"props":664,"children":665},{"style":119},[666],{"type":62,"value":667}," --name=",{"type":57,"tag":97,"props":669,"children":670},{"style":222},[671],{"type":62,"value":672},"\"",{"type":57,"tag":97,"props":674,"children":675},{"style":119},[676],{"type":62,"value":677},"My Workflow",{"type":57,"tag":97,"props":679,"children":680},{"style":222},[681],{"type":62,"value":682},"\"\n",{"type":57,"tag":97,"props":684,"children":685},{"class":99,"line":197},[686,690,694,698],{"type":57,"tag":97,"props":687,"children":688},{"style":114},[689],{"type":62,"value":4},{"type":57,"tag":97,"props":691,"children":692},{"style":119},[693],{"type":62,"value":586},{"type":57,"tag":97,"props":695,"children":696},{"style":119},[697],{"type":62,"value":622},{"type":57,"tag":97,"props":699,"children":700},{"style":119},[701],{"type":62,"value":702}," --limit=5\n",{"type":57,"tag":97,"props":704,"children":705},{"class":99,"line":206},[706],{"type":57,"tag":97,"props":707,"children":708},{"emptyLinePlaceholder":129},[709],{"type":62,"value":132},{"type":57,"tag":97,"props":711,"children":712},{"class":99,"line":233},[713],{"type":57,"tag":97,"props":714,"children":715},{"style":104},[716],{"type":62,"value":717},"# Get a single workflow (full JSON with nodes and connections)\n",{"type":57,"tag":97,"props":719,"children":721},{"class":99,"line":720},11,[722,726,730,735,740,745,750],{"type":57,"tag":97,"props":723,"children":724},{"style":114},[725],{"type":62,"value":4},{"type":57,"tag":97,"props":727,"children":728},{"style":119},[729],{"type":62,"value":586},{"type":57,"tag":97,"props":731,"children":732},{"style":119},[733],{"type":62,"value":734}," get",{"type":57,"tag":97,"props":736,"children":737},{"style":222},[738],{"type":62,"value":739}," \u003C",{"type":57,"tag":97,"props":741,"children":742},{"style":119},[743],{"type":62,"value":744},"i",{"type":57,"tag":97,"props":746,"children":747},{"style":216},[748],{"type":62,"value":749},"d",{"type":57,"tag":97,"props":751,"children":752},{"style":222},[753],{"type":62,"value":754},">\n",{"type":57,"tag":97,"props":756,"children":758},{"class":99,"line":757},12,[759],{"type":57,"tag":97,"props":760,"children":761},{"emptyLinePlaceholder":129},[762],{"type":62,"value":132},{"type":57,"tag":97,"props":764,"children":766},{"class":99,"line":765},13,[767],{"type":57,"tag":97,"props":768,"children":769},{"style":104},[770],{"type":62,"value":771},"# Extract just node names from a workflow\n",{"type":57,"tag":97,"props":773,"children":775},{"class":99,"line":774},14,[776,780,784,788,792,796,800,805,810,815,820],{"type":57,"tag":97,"props":777,"children":778},{"style":114},[779],{"type":62,"value":4},{"type":57,"tag":97,"props":781,"children":782},{"style":119},[783],{"type":62,"value":586},{"type":57,"tag":97,"props":785,"children":786},{"style":119},[787],{"type":62,"value":734},{"type":57,"tag":97,"props":789,"children":790},{"style":222},[791],{"type":62,"value":739},{"type":57,"tag":97,"props":793,"children":794},{"style":119},[795],{"type":62,"value":744},{"type":57,"tag":97,"props":797,"children":798},{"style":216},[799],{"type":62,"value":749},{"type":57,"tag":97,"props":801,"children":802},{"style":222},[803],{"type":62,"value":804},">",{"type":57,"tag":97,"props":806,"children":807},{"style":119},[808],{"type":62,"value":809}," --jq",{"type":57,"tag":97,"props":811,"children":812},{"style":222},[813],{"type":62,"value":814}," '",{"type":57,"tag":97,"props":816,"children":817},{"style":119},[818],{"type":62,"value":819},".nodes[].name",{"type":57,"tag":97,"props":821,"children":822},{"style":222},[823],{"type":62,"value":824},"'\n",{"type":57,"tag":97,"props":826,"children":828},{"class":99,"line":827},15,[829],{"type":57,"tag":97,"props":830,"children":831},{"emptyLinePlaceholder":129},[832],{"type":62,"value":132},{"type":57,"tag":97,"props":834,"children":836},{"class":99,"line":835},16,[837],{"type":57,"tag":97,"props":838,"children":839},{"style":104},[840],{"type":62,"value":841},"# Create a workflow from JSON\n",{"type":57,"tag":97,"props":843,"children":845},{"class":99,"line":844},17,[846,850,854,859],{"type":57,"tag":97,"props":847,"children":848},{"style":114},[849],{"type":62,"value":4},{"type":57,"tag":97,"props":851,"children":852},{"style":119},[853],{"type":62,"value":586},{"type":57,"tag":97,"props":855,"children":856},{"style":119},[857],{"type":62,"value":858}," create",{"type":57,"tag":97,"props":860,"children":861},{"style":119},[862],{"type":62,"value":863}," --file=workflow.json\n",{"type":57,"tag":97,"props":865,"children":867},{"class":99,"line":866},18,[868,873,878,883,888,892,896],{"type":57,"tag":97,"props":869,"children":870},{"style":114},[871],{"type":62,"value":872},"cat",{"type":57,"tag":97,"props":874,"children":875},{"style":119},[876],{"type":62,"value":877}," workflow.json",{"type":57,"tag":97,"props":879,"children":880},{"style":222},[881],{"type":62,"value":882}," |",{"type":57,"tag":97,"props":884,"children":885},{"style":114},[886],{"type":62,"value":887}," n8n-cli",{"type":57,"tag":97,"props":889,"children":890},{"style":119},[891],{"type":62,"value":586},{"type":57,"tag":97,"props":893,"children":894},{"style":119},[895],{"type":62,"value":858},{"type":57,"tag":97,"props":897,"children":898},{"style":119},[899],{"type":62,"value":900}," --stdin\n",{"type":57,"tag":97,"props":902,"children":904},{"class":99,"line":903},19,[905],{"type":57,"tag":97,"props":906,"children":907},{"emptyLinePlaceholder":129},[908],{"type":62,"value":132},{"type":57,"tag":97,"props":910,"children":912},{"class":99,"line":911},20,[913],{"type":57,"tag":97,"props":914,"children":915},{"style":104},[916],{"type":62,"value":917},"# Update a workflow\n",{"type":57,"tag":97,"props":919,"children":921},{"class":99,"line":920},21,[922,926,930,935,939,943,947,951],{"type":57,"tag":97,"props":923,"children":924},{"style":114},[925],{"type":62,"value":4},{"type":57,"tag":97,"props":927,"children":928},{"style":119},[929],{"type":62,"value":586},{"type":57,"tag":97,"props":931,"children":932},{"style":119},[933],{"type":62,"value":934}," update",{"type":57,"tag":97,"props":936,"children":937},{"style":222},[938],{"type":62,"value":739},{"type":57,"tag":97,"props":940,"children":941},{"style":119},[942],{"type":62,"value":744},{"type":57,"tag":97,"props":944,"children":945},{"style":216},[946],{"type":62,"value":749},{"type":57,"tag":97,"props":948,"children":949},{"style":222},[950],{"type":62,"value":804},{"type":57,"tag":97,"props":952,"children":953},{"style":119},[954],{"type":62,"value":955}," --file=updated.json\n",{"type":57,"tag":97,"props":957,"children":959},{"class":99,"line":958},22,[960,964,969,973,977,981,985,989,993,997,1001],{"type":57,"tag":97,"props":961,"children":962},{"style":114},[963],{"type":62,"value":872},{"type":57,"tag":97,"props":965,"children":966},{"style":119},[967],{"type":62,"value":968}," updated.json",{"type":57,"tag":97,"props":970,"children":971},{"style":222},[972],{"type":62,"value":882},{"type":57,"tag":97,"props":974,"children":975},{"style":114},[976],{"type":62,"value":887},{"type":57,"tag":97,"props":978,"children":979},{"style":119},[980],{"type":62,"value":586},{"type":57,"tag":97,"props":982,"children":983},{"style":119},[984],{"type":62,"value":934},{"type":57,"tag":97,"props":986,"children":987},{"style":222},[988],{"type":62,"value":739},{"type":57,"tag":97,"props":990,"children":991},{"style":119},[992],{"type":62,"value":744},{"type":57,"tag":97,"props":994,"children":995},{"style":216},[996],{"type":62,"value":749},{"type":57,"tag":97,"props":998,"children":999},{"style":222},[1000],{"type":62,"value":804},{"type":57,"tag":97,"props":1002,"children":1003},{"style":119},[1004],{"type":62,"value":900},{"type":57,"tag":97,"props":1006,"children":1008},{"class":99,"line":1007},23,[1009],{"type":57,"tag":97,"props":1010,"children":1011},{"emptyLinePlaceholder":129},[1012],{"type":62,"value":132},{"type":57,"tag":97,"props":1014,"children":1016},{"class":99,"line":1015},24,[1017],{"type":57,"tag":97,"props":1018,"children":1019},{"style":104},[1020],{"type":62,"value":1021},"# Activate \u002F deactivate\n",{"type":57,"tag":97,"props":1023,"children":1025},{"class":99,"line":1024},25,[1026,1030,1034,1039,1043,1047,1051],{"type":57,"tag":97,"props":1027,"children":1028},{"style":114},[1029],{"type":62,"value":4},{"type":57,"tag":97,"props":1031,"children":1032},{"style":119},[1033],{"type":62,"value":586},{"type":57,"tag":97,"props":1035,"children":1036},{"style":119},[1037],{"type":62,"value":1038}," activate",{"type":57,"tag":97,"props":1040,"children":1041},{"style":222},[1042],{"type":62,"value":739},{"type":57,"tag":97,"props":1044,"children":1045},{"style":119},[1046],{"type":62,"value":744},{"type":57,"tag":97,"props":1048,"children":1049},{"style":216},[1050],{"type":62,"value":749},{"type":57,"tag":97,"props":1052,"children":1053},{"style":222},[1054],{"type":62,"value":754},{"type":57,"tag":97,"props":1056,"children":1058},{"class":99,"line":1057},26,[1059,1063,1067,1072,1076,1080,1084],{"type":57,"tag":97,"props":1060,"children":1061},{"style":114},[1062],{"type":62,"value":4},{"type":57,"tag":97,"props":1064,"children":1065},{"style":119},[1066],{"type":62,"value":586},{"type":57,"tag":97,"props":1068,"children":1069},{"style":119},[1070],{"type":62,"value":1071}," deactivate",{"type":57,"tag":97,"props":1073,"children":1074},{"style":222},[1075],{"type":62,"value":739},{"type":57,"tag":97,"props":1077,"children":1078},{"style":119},[1079],{"type":62,"value":744},{"type":57,"tag":97,"props":1081,"children":1082},{"style":216},[1083],{"type":62,"value":749},{"type":57,"tag":97,"props":1085,"children":1086},{"style":222},[1087],{"type":62,"value":754},{"type":57,"tag":97,"props":1089,"children":1091},{"class":99,"line":1090},27,[1092],{"type":57,"tag":97,"props":1093,"children":1094},{"emptyLinePlaceholder":129},[1095],{"type":62,"value":132},{"type":57,"tag":97,"props":1097,"children":1099},{"class":99,"line":1098},28,[1100],{"type":57,"tag":97,"props":1101,"children":1102},{"style":104},[1103],{"type":62,"value":1104},"# Delete a workflow\n",{"type":57,"tag":97,"props":1106,"children":1108},{"class":99,"line":1107},29,[1109,1113,1117,1122,1126,1130,1134],{"type":57,"tag":97,"props":1110,"children":1111},{"style":114},[1112],{"type":62,"value":4},{"type":57,"tag":97,"props":1114,"children":1115},{"style":119},[1116],{"type":62,"value":586},{"type":57,"tag":97,"props":1118,"children":1119},{"style":119},[1120],{"type":62,"value":1121}," delete",{"type":57,"tag":97,"props":1123,"children":1124},{"style":222},[1125],{"type":62,"value":739},{"type":57,"tag":97,"props":1127,"children":1128},{"style":119},[1129],{"type":62,"value":744},{"type":57,"tag":97,"props":1131,"children":1132},{"style":216},[1133],{"type":62,"value":749},{"type":57,"tag":97,"props":1135,"children":1136},{"style":222},[1137],{"type":62,"value":754},{"type":57,"tag":97,"props":1139,"children":1141},{"class":99,"line":1140},30,[1142],{"type":57,"tag":97,"props":1143,"children":1144},{"emptyLinePlaceholder":129},[1145],{"type":62,"value":132},{"type":57,"tag":97,"props":1147,"children":1149},{"class":99,"line":1148},31,[1150],{"type":57,"tag":97,"props":1151,"children":1152},{"style":104},[1153],{"type":62,"value":1154},"# Transfer to another project\n",{"type":57,"tag":97,"props":1156,"children":1158},{"class":99,"line":1157},32,[1159,1163,1167,1172,1176,1180,1184,1188,1193,1198,1203],{"type":57,"tag":97,"props":1160,"children":1161},{"style":114},[1162],{"type":62,"value":4},{"type":57,"tag":97,"props":1164,"children":1165},{"style":119},[1166],{"type":62,"value":586},{"type":57,"tag":97,"props":1168,"children":1169},{"style":119},[1170],{"type":62,"value":1171}," transfer",{"type":57,"tag":97,"props":1173,"children":1174},{"style":222},[1175],{"type":62,"value":739},{"type":57,"tag":97,"props":1177,"children":1178},{"style":119},[1179],{"type":62,"value":744},{"type":57,"tag":97,"props":1181,"children":1182},{"style":216},[1183],{"type":62,"value":749},{"type":57,"tag":97,"props":1185,"children":1186},{"style":222},[1187],{"type":62,"value":804},{"type":57,"tag":97,"props":1189,"children":1190},{"style":119},[1191],{"type":62,"value":1192}," --project=",{"type":57,"tag":97,"props":1194,"children":1195},{"style":222},[1196],{"type":62,"value":1197},"\u003C",{"type":57,"tag":97,"props":1199,"children":1200},{"style":119},[1201],{"type":62,"value":1202},"projectId",{"type":57,"tag":97,"props":1204,"children":1205},{"style":222},[1206],{"type":62,"value":754},{"type":57,"tag":97,"props":1208,"children":1210},{"class":99,"line":1209},33,[1211],{"type":57,"tag":97,"props":1212,"children":1213},{"emptyLinePlaceholder":129},[1214],{"type":62,"value":132},{"type":57,"tag":97,"props":1216,"children":1218},{"class":99,"line":1217},34,[1219],{"type":57,"tag":97,"props":1220,"children":1221},{"style":104},[1222],{"type":62,"value":1223},"# List tags on a workflow\n",{"type":57,"tag":97,"props":1225,"children":1227},{"class":99,"line":1226},35,[1228,1232,1236,1241,1245,1249,1253],{"type":57,"tag":97,"props":1229,"children":1230},{"style":114},[1231],{"type":62,"value":4},{"type":57,"tag":97,"props":1233,"children":1234},{"style":119},[1235],{"type":62,"value":586},{"type":57,"tag":97,"props":1237,"children":1238},{"style":119},[1239],{"type":62,"value":1240}," tags",{"type":57,"tag":97,"props":1242,"children":1243},{"style":222},[1244],{"type":62,"value":739},{"type":57,"tag":97,"props":1246,"children":1247},{"style":119},[1248],{"type":62,"value":744},{"type":57,"tag":97,"props":1250,"children":1251},{"style":216},[1252],{"type":62,"value":749},{"type":57,"tag":97,"props":1254,"children":1255},{"style":222},[1256],{"type":62,"value":754},{"type":57,"tag":79,"props":1258,"children":1260},{"id":1259},"executions",[1261],{"type":62,"value":1262},"Executions",{"type":57,"tag":86,"props":1264,"children":1266},{"className":88,"code":1265,"language":90,"meta":91,"style":91},"# List recent executions\nn8n-cli execution list\nn8n-cli execution list --workflow=\u003Cid> --status=error --limit=10\n# status options: canceled, error, running, success, waiting\n\n# Get execution details\nn8n-cli execution get \u003Cid>\nn8n-cli execution get \u003Cid> --include-data   # includes full node I\u002FO\n\n# Retry a failed execution\nn8n-cli execution retry \u003Cid>\n\n# Stop a running execution\nn8n-cli execution stop \u003Cid>\n\n# Delete an execution\nn8n-cli execution delete \u003Cid>\n",[1267],{"type":57,"tag":71,"props":1268,"children":1269},{"__ignoreMap":91},[1270,1278,1294,1337,1345,1352,1360,1391,1432,1439,1447,1479,1486,1494,1526,1533,1541],{"type":57,"tag":97,"props":1271,"children":1272},{"class":99,"line":100},[1273],{"type":57,"tag":97,"props":1274,"children":1275},{"style":104},[1276],{"type":62,"value":1277},"# List recent executions\n",{"type":57,"tag":97,"props":1279,"children":1280},{"class":99,"line":110},[1281,1285,1290],{"type":57,"tag":97,"props":1282,"children":1283},{"style":114},[1284],{"type":62,"value":4},{"type":57,"tag":97,"props":1286,"children":1287},{"style":119},[1288],{"type":62,"value":1289}," execution",{"type":57,"tag":97,"props":1291,"children":1292},{"style":119},[1293],{"type":62,"value":591},{"type":57,"tag":97,"props":1295,"children":1296},{"class":99,"line":125},[1297,1301,1305,1309,1314,1318,1323,1327,1332],{"type":57,"tag":97,"props":1298,"children":1299},{"style":114},[1300],{"type":62,"value":4},{"type":57,"tag":97,"props":1302,"children":1303},{"style":119},[1304],{"type":62,"value":1289},{"type":57,"tag":97,"props":1306,"children":1307},{"style":119},[1308],{"type":62,"value":622},{"type":57,"tag":97,"props":1310,"children":1311},{"style":119},[1312],{"type":62,"value":1313}," --workflow=",{"type":57,"tag":97,"props":1315,"children":1316},{"style":222},[1317],{"type":62,"value":1197},{"type":57,"tag":97,"props":1319,"children":1320},{"style":119},[1321],{"type":62,"value":1322},"id",{"type":57,"tag":97,"props":1324,"children":1325},{"style":222},[1326],{"type":62,"value":804},{"type":57,"tag":97,"props":1328,"children":1329},{"style":119},[1330],{"type":62,"value":1331}," --status=error",{"type":57,"tag":97,"props":1333,"children":1334},{"style":119},[1335],{"type":62,"value":1336}," --limit=10\n",{"type":57,"tag":97,"props":1338,"children":1339},{"class":99,"line":135},[1340],{"type":57,"tag":97,"props":1341,"children":1342},{"style":104},[1343],{"type":62,"value":1344},"# status options: canceled, error, running, success, waiting\n",{"type":57,"tag":97,"props":1346,"children":1347},{"class":99,"line":144},[1348],{"type":57,"tag":97,"props":1349,"children":1350},{"emptyLinePlaceholder":129},[1351],{"type":62,"value":132},{"type":57,"tag":97,"props":1353,"children":1354},{"class":99,"line":167},[1355],{"type":57,"tag":97,"props":1356,"children":1357},{"style":104},[1358],{"type":62,"value":1359},"# Get execution details\n",{"type":57,"tag":97,"props":1361,"children":1362},{"class":99,"line":189},[1363,1367,1371,1375,1379,1383,1387],{"type":57,"tag":97,"props":1364,"children":1365},{"style":114},[1366],{"type":62,"value":4},{"type":57,"tag":97,"props":1368,"children":1369},{"style":119},[1370],{"type":62,"value":1289},{"type":57,"tag":97,"props":1372,"children":1373},{"style":119},[1374],{"type":62,"value":734},{"type":57,"tag":97,"props":1376,"children":1377},{"style":222},[1378],{"type":62,"value":739},{"type":57,"tag":97,"props":1380,"children":1381},{"style":119},[1382],{"type":62,"value":744},{"type":57,"tag":97,"props":1384,"children":1385},{"style":216},[1386],{"type":62,"value":749},{"type":57,"tag":97,"props":1388,"children":1389},{"style":222},[1390],{"type":62,"value":754},{"type":57,"tag":97,"props":1392,"children":1393},{"class":99,"line":197},[1394,1398,1402,1406,1410,1414,1418,1422,1427],{"type":57,"tag":97,"props":1395,"children":1396},{"style":114},[1397],{"type":62,"value":4},{"type":57,"tag":97,"props":1399,"children":1400},{"style":119},[1401],{"type":62,"value":1289},{"type":57,"tag":97,"props":1403,"children":1404},{"style":119},[1405],{"type":62,"value":734},{"type":57,"tag":97,"props":1407,"children":1408},{"style":222},[1409],{"type":62,"value":739},{"type":57,"tag":97,"props":1411,"children":1412},{"style":119},[1413],{"type":62,"value":744},{"type":57,"tag":97,"props":1415,"children":1416},{"style":216},[1417],{"type":62,"value":749},{"type":57,"tag":97,"props":1419,"children":1420},{"style":222},[1421],{"type":62,"value":804},{"type":57,"tag":97,"props":1423,"children":1424},{"style":119},[1425],{"type":62,"value":1426}," --include-data",{"type":57,"tag":97,"props":1428,"children":1429},{"style":104},[1430],{"type":62,"value":1431},"   # includes full node I\u002FO\n",{"type":57,"tag":97,"props":1433,"children":1434},{"class":99,"line":206},[1435],{"type":57,"tag":97,"props":1436,"children":1437},{"emptyLinePlaceholder":129},[1438],{"type":62,"value":132},{"type":57,"tag":97,"props":1440,"children":1441},{"class":99,"line":233},[1442],{"type":57,"tag":97,"props":1443,"children":1444},{"style":104},[1445],{"type":62,"value":1446},"# Retry a failed execution\n",{"type":57,"tag":97,"props":1448,"children":1449},{"class":99,"line":720},[1450,1454,1458,1463,1467,1471,1475],{"type":57,"tag":97,"props":1451,"children":1452},{"style":114},[1453],{"type":62,"value":4},{"type":57,"tag":97,"props":1455,"children":1456},{"style":119},[1457],{"type":62,"value":1289},{"type":57,"tag":97,"props":1459,"children":1460},{"style":119},[1461],{"type":62,"value":1462}," retry",{"type":57,"tag":97,"props":1464,"children":1465},{"style":222},[1466],{"type":62,"value":739},{"type":57,"tag":97,"props":1468,"children":1469},{"style":119},[1470],{"type":62,"value":744},{"type":57,"tag":97,"props":1472,"children":1473},{"style":216},[1474],{"type":62,"value":749},{"type":57,"tag":97,"props":1476,"children":1477},{"style":222},[1478],{"type":62,"value":754},{"type":57,"tag":97,"props":1480,"children":1481},{"class":99,"line":757},[1482],{"type":57,"tag":97,"props":1483,"children":1484},{"emptyLinePlaceholder":129},[1485],{"type":62,"value":132},{"type":57,"tag":97,"props":1487,"children":1488},{"class":99,"line":765},[1489],{"type":57,"tag":97,"props":1490,"children":1491},{"style":104},[1492],{"type":62,"value":1493},"# Stop a running execution\n",{"type":57,"tag":97,"props":1495,"children":1496},{"class":99,"line":774},[1497,1501,1505,1510,1514,1518,1522],{"type":57,"tag":97,"props":1498,"children":1499},{"style":114},[1500],{"type":62,"value":4},{"type":57,"tag":97,"props":1502,"children":1503},{"style":119},[1504],{"type":62,"value":1289},{"type":57,"tag":97,"props":1506,"children":1507},{"style":119},[1508],{"type":62,"value":1509}," stop",{"type":57,"tag":97,"props":1511,"children":1512},{"style":222},[1513],{"type":62,"value":739},{"type":57,"tag":97,"props":1515,"children":1516},{"style":119},[1517],{"type":62,"value":744},{"type":57,"tag":97,"props":1519,"children":1520},{"style":216},[1521],{"type":62,"value":749},{"type":57,"tag":97,"props":1523,"children":1524},{"style":222},[1525],{"type":62,"value":754},{"type":57,"tag":97,"props":1527,"children":1528},{"class":99,"line":827},[1529],{"type":57,"tag":97,"props":1530,"children":1531},{"emptyLinePlaceholder":129},[1532],{"type":62,"value":132},{"type":57,"tag":97,"props":1534,"children":1535},{"class":99,"line":835},[1536],{"type":57,"tag":97,"props":1537,"children":1538},{"style":104},[1539],{"type":62,"value":1540},"# Delete an execution\n",{"type":57,"tag":97,"props":1542,"children":1543},{"class":99,"line":844},[1544,1548,1552,1556,1560,1564,1568],{"type":57,"tag":97,"props":1545,"children":1546},{"style":114},[1547],{"type":62,"value":4},{"type":57,"tag":97,"props":1549,"children":1550},{"style":119},[1551],{"type":62,"value":1289},{"type":57,"tag":97,"props":1553,"children":1554},{"style":119},[1555],{"type":62,"value":1121},{"type":57,"tag":97,"props":1557,"children":1558},{"style":222},[1559],{"type":62,"value":739},{"type":57,"tag":97,"props":1561,"children":1562},{"style":119},[1563],{"type":62,"value":744},{"type":57,"tag":97,"props":1565,"children":1566},{"style":216},[1567],{"type":62,"value":749},{"type":57,"tag":97,"props":1569,"children":1570},{"style":222},[1571],{"type":62,"value":754},{"type":57,"tag":79,"props":1573,"children":1575},{"id":1574},"credentials",[1576],{"type":62,"value":1577},"Credentials",{"type":57,"tag":86,"props":1579,"children":1581},{"className":88,"code":1580,"language":90,"meta":91,"style":91},"# List credentials\nn8n-cli credential list\n\n# Get credential metadata (not secrets)\nn8n-cli credential get \u003Cid>\n\n# Get the schema for a credential type (shows required fields)\nn8n-cli credential schema notionApi\nn8n-cli credential schema slackOAuth2Api\n\n# Create a credential\nn8n-cli credential create --type=notionApi --name='My Notion' --data='{\"apiKey\":\"...\"}'\nn8n-cli credential create --type=notionApi --name='My Notion' --file=cred.json\ncat cred.json | n8n-cli credential create --type=notionApi --name='My Notion' --stdin\n\n# Delete \u002F transfer\nn8n-cli credential delete \u003Cid>\nn8n-cli credential transfer \u003Cid> --project=\u003CprojectId>\n",[1582],{"type":57,"tag":71,"props":1583,"children":1584},{"__ignoreMap":91},[1585,1593,1609,1616,1624,1655,1662,1670,1691,1711,1718,1726,1782,1822,1874,1881,1889,1920],{"type":57,"tag":97,"props":1586,"children":1587},{"class":99,"line":100},[1588],{"type":57,"tag":97,"props":1589,"children":1590},{"style":104},[1591],{"type":62,"value":1592},"# List credentials\n",{"type":57,"tag":97,"props":1594,"children":1595},{"class":99,"line":110},[1596,1600,1605],{"type":57,"tag":97,"props":1597,"children":1598},{"style":114},[1599],{"type":62,"value":4},{"type":57,"tag":97,"props":1601,"children":1602},{"style":119},[1603],{"type":62,"value":1604}," credential",{"type":57,"tag":97,"props":1606,"children":1607},{"style":119},[1608],{"type":62,"value":591},{"type":57,"tag":97,"props":1610,"children":1611},{"class":99,"line":125},[1612],{"type":57,"tag":97,"props":1613,"children":1614},{"emptyLinePlaceholder":129},[1615],{"type":62,"value":132},{"type":57,"tag":97,"props":1617,"children":1618},{"class":99,"line":135},[1619],{"type":57,"tag":97,"props":1620,"children":1621},{"style":104},[1622],{"type":62,"value":1623},"# Get credential metadata (not secrets)\n",{"type":57,"tag":97,"props":1625,"children":1626},{"class":99,"line":144},[1627,1631,1635,1639,1643,1647,1651],{"type":57,"tag":97,"props":1628,"children":1629},{"style":114},[1630],{"type":62,"value":4},{"type":57,"tag":97,"props":1632,"children":1633},{"style":119},[1634],{"type":62,"value":1604},{"type":57,"tag":97,"props":1636,"children":1637},{"style":119},[1638],{"type":62,"value":734},{"type":57,"tag":97,"props":1640,"children":1641},{"style":222},[1642],{"type":62,"value":739},{"type":57,"tag":97,"props":1644,"children":1645},{"style":119},[1646],{"type":62,"value":744},{"type":57,"tag":97,"props":1648,"children":1649},{"style":216},[1650],{"type":62,"value":749},{"type":57,"tag":97,"props":1652,"children":1653},{"style":222},[1654],{"type":62,"value":754},{"type":57,"tag":97,"props":1656,"children":1657},{"class":99,"line":167},[1658],{"type":57,"tag":97,"props":1659,"children":1660},{"emptyLinePlaceholder":129},[1661],{"type":62,"value":132},{"type":57,"tag":97,"props":1663,"children":1664},{"class":99,"line":189},[1665],{"type":57,"tag":97,"props":1666,"children":1667},{"style":104},[1668],{"type":62,"value":1669},"# Get the schema for a credential type (shows required fields)\n",{"type":57,"tag":97,"props":1671,"children":1672},{"class":99,"line":197},[1673,1677,1681,1686],{"type":57,"tag":97,"props":1674,"children":1675},{"style":114},[1676],{"type":62,"value":4},{"type":57,"tag":97,"props":1678,"children":1679},{"style":119},[1680],{"type":62,"value":1604},{"type":57,"tag":97,"props":1682,"children":1683},{"style":119},[1684],{"type":62,"value":1685}," schema",{"type":57,"tag":97,"props":1687,"children":1688},{"style":119},[1689],{"type":62,"value":1690}," notionApi\n",{"type":57,"tag":97,"props":1692,"children":1693},{"class":99,"line":206},[1694,1698,1702,1706],{"type":57,"tag":97,"props":1695,"children":1696},{"style":114},[1697],{"type":62,"value":4},{"type":57,"tag":97,"props":1699,"children":1700},{"style":119},[1701],{"type":62,"value":1604},{"type":57,"tag":97,"props":1703,"children":1704},{"style":119},[1705],{"type":62,"value":1685},{"type":57,"tag":97,"props":1707,"children":1708},{"style":119},[1709],{"type":62,"value":1710}," slackOAuth2Api\n",{"type":57,"tag":97,"props":1712,"children":1713},{"class":99,"line":233},[1714],{"type":57,"tag":97,"props":1715,"children":1716},{"emptyLinePlaceholder":129},[1717],{"type":62,"value":132},{"type":57,"tag":97,"props":1719,"children":1720},{"class":99,"line":720},[1721],{"type":57,"tag":97,"props":1722,"children":1723},{"style":104},[1724],{"type":62,"value":1725},"# Create a credential\n",{"type":57,"tag":97,"props":1727,"children":1728},{"class":99,"line":757},[1729,1733,1737,1741,1746,1750,1755,1760,1764,1769,1773,1778],{"type":57,"tag":97,"props":1730,"children":1731},{"style":114},[1732],{"type":62,"value":4},{"type":57,"tag":97,"props":1734,"children":1735},{"style":119},[1736],{"type":62,"value":1604},{"type":57,"tag":97,"props":1738,"children":1739},{"style":119},[1740],{"type":62,"value":858},{"type":57,"tag":97,"props":1742,"children":1743},{"style":119},[1744],{"type":62,"value":1745}," --type=notionApi",{"type":57,"tag":97,"props":1747,"children":1748},{"style":119},[1749],{"type":62,"value":667},{"type":57,"tag":97,"props":1751,"children":1752},{"style":222},[1753],{"type":62,"value":1754},"'",{"type":57,"tag":97,"props":1756,"children":1757},{"style":119},[1758],{"type":62,"value":1759},"My Notion",{"type":57,"tag":97,"props":1761,"children":1762},{"style":222},[1763],{"type":62,"value":1754},{"type":57,"tag":97,"props":1765,"children":1766},{"style":119},[1767],{"type":62,"value":1768}," --data=",{"type":57,"tag":97,"props":1770,"children":1771},{"style":222},[1772],{"type":62,"value":1754},{"type":57,"tag":97,"props":1774,"children":1775},{"style":119},[1776],{"type":62,"value":1777},"{\"apiKey\":\"...\"}",{"type":57,"tag":97,"props":1779,"children":1780},{"style":222},[1781],{"type":62,"value":824},{"type":57,"tag":97,"props":1783,"children":1784},{"class":99,"line":765},[1785,1789,1793,1797,1801,1805,1809,1813,1817],{"type":57,"tag":97,"props":1786,"children":1787},{"style":114},[1788],{"type":62,"value":4},{"type":57,"tag":97,"props":1790,"children":1791},{"style":119},[1792],{"type":62,"value":1604},{"type":57,"tag":97,"props":1794,"children":1795},{"style":119},[1796],{"type":62,"value":858},{"type":57,"tag":97,"props":1798,"children":1799},{"style":119},[1800],{"type":62,"value":1745},{"type":57,"tag":97,"props":1802,"children":1803},{"style":119},[1804],{"type":62,"value":667},{"type":57,"tag":97,"props":1806,"children":1807},{"style":222},[1808],{"type":62,"value":1754},{"type":57,"tag":97,"props":1810,"children":1811},{"style":119},[1812],{"type":62,"value":1759},{"type":57,"tag":97,"props":1814,"children":1815},{"style":222},[1816],{"type":62,"value":1754},{"type":57,"tag":97,"props":1818,"children":1819},{"style":119},[1820],{"type":62,"value":1821}," --file=cred.json\n",{"type":57,"tag":97,"props":1823,"children":1824},{"class":99,"line":774},[1825,1829,1834,1838,1842,1846,1850,1854,1858,1862,1866,1870],{"type":57,"tag":97,"props":1826,"children":1827},{"style":114},[1828],{"type":62,"value":872},{"type":57,"tag":97,"props":1830,"children":1831},{"style":119},[1832],{"type":62,"value":1833}," cred.json",{"type":57,"tag":97,"props":1835,"children":1836},{"style":222},[1837],{"type":62,"value":882},{"type":57,"tag":97,"props":1839,"children":1840},{"style":114},[1841],{"type":62,"value":887},{"type":57,"tag":97,"props":1843,"children":1844},{"style":119},[1845],{"type":62,"value":1604},{"type":57,"tag":97,"props":1847,"children":1848},{"style":119},[1849],{"type":62,"value":858},{"type":57,"tag":97,"props":1851,"children":1852},{"style":119},[1853],{"type":62,"value":1745},{"type":57,"tag":97,"props":1855,"children":1856},{"style":119},[1857],{"type":62,"value":667},{"type":57,"tag":97,"props":1859,"children":1860},{"style":222},[1861],{"type":62,"value":1754},{"type":57,"tag":97,"props":1863,"children":1864},{"style":119},[1865],{"type":62,"value":1759},{"type":57,"tag":97,"props":1867,"children":1868},{"style":222},[1869],{"type":62,"value":1754},{"type":57,"tag":97,"props":1871,"children":1872},{"style":119},[1873],{"type":62,"value":900},{"type":57,"tag":97,"props":1875,"children":1876},{"class":99,"line":827},[1877],{"type":57,"tag":97,"props":1878,"children":1879},{"emptyLinePlaceholder":129},[1880],{"type":62,"value":132},{"type":57,"tag":97,"props":1882,"children":1883},{"class":99,"line":835},[1884],{"type":57,"tag":97,"props":1885,"children":1886},{"style":104},[1887],{"type":62,"value":1888},"# Delete \u002F transfer\n",{"type":57,"tag":97,"props":1890,"children":1891},{"class":99,"line":844},[1892,1896,1900,1904,1908,1912,1916],{"type":57,"tag":97,"props":1893,"children":1894},{"style":114},[1895],{"type":62,"value":4},{"type":57,"tag":97,"props":1897,"children":1898},{"style":119},[1899],{"type":62,"value":1604},{"type":57,"tag":97,"props":1901,"children":1902},{"style":119},[1903],{"type":62,"value":1121},{"type":57,"tag":97,"props":1905,"children":1906},{"style":222},[1907],{"type":62,"value":739},{"type":57,"tag":97,"props":1909,"children":1910},{"style":119},[1911],{"type":62,"value":744},{"type":57,"tag":97,"props":1913,"children":1914},{"style":216},[1915],{"type":62,"value":749},{"type":57,"tag":97,"props":1917,"children":1918},{"style":222},[1919],{"type":62,"value":754},{"type":57,"tag":97,"props":1921,"children":1922},{"class":99,"line":866},[1923,1927,1931,1935,1939,1943,1947,1951,1955,1959,1963],{"type":57,"tag":97,"props":1924,"children":1925},{"style":114},[1926],{"type":62,"value":4},{"type":57,"tag":97,"props":1928,"children":1929},{"style":119},[1930],{"type":62,"value":1604},{"type":57,"tag":97,"props":1932,"children":1933},{"style":119},[1934],{"type":62,"value":1171},{"type":57,"tag":97,"props":1936,"children":1937},{"style":222},[1938],{"type":62,"value":739},{"type":57,"tag":97,"props":1940,"children":1941},{"style":119},[1942],{"type":62,"value":744},{"type":57,"tag":97,"props":1944,"children":1945},{"style":216},[1946],{"type":62,"value":749},{"type":57,"tag":97,"props":1948,"children":1949},{"style":222},[1950],{"type":62,"value":804},{"type":57,"tag":97,"props":1952,"children":1953},{"style":119},[1954],{"type":62,"value":1192},{"type":57,"tag":97,"props":1956,"children":1957},{"style":222},[1958],{"type":62,"value":1197},{"type":57,"tag":97,"props":1960,"children":1961},{"style":119},[1962],{"type":62,"value":1202},{"type":57,"tag":97,"props":1964,"children":1965},{"style":222},[1966],{"type":62,"value":754},{"type":57,"tag":65,"props":1968,"children":1969},{},[1970,1975,1977,1983],{"type":57,"tag":547,"props":1971,"children":1972},{},[1973],{"type":62,"value":1974},"Tip:",{"type":62,"value":1976}," Use ",{"type":57,"tag":71,"props":1978,"children":1980},{"className":1979},[],[1981],{"type":62,"value":1982},"credential schema \u003Ctype>",{"type":62,"value":1984}," to discover required fields before creating.",{"type":57,"tag":79,"props":1986,"children":1988},{"id":1987},"projects",[1989],{"type":62,"value":1990},"Projects",{"type":57,"tag":86,"props":1992,"children":1994},{"className":88,"code":1993,"language":90,"meta":91,"style":91},"n8n-cli project list\nn8n-cli project get \u003Cid>\nn8n-cli project create --name=\"My Project\"\nn8n-cli project update \u003Cid> --name=\"New Name\"\nn8n-cli project delete \u003Cid>\n\n# Team management\nn8n-cli project members \u003Cid>\nn8n-cli project add-member \u003Cid> --user=\u003CuserId> --role=\u003Crole>\nn8n-cli project remove-member \u003Cid> --user=\u003CuserId>\n",[1995],{"type":57,"tag":71,"props":1996,"children":1997},{"__ignoreMap":91},[1998,2014,2045,2077,2125,2156,2163,2171,2203,2271],{"type":57,"tag":97,"props":1999,"children":2000},{"class":99,"line":100},[2001,2005,2010],{"type":57,"tag":97,"props":2002,"children":2003},{"style":114},[2004],{"type":62,"value":4},{"type":57,"tag":97,"props":2006,"children":2007},{"style":119},[2008],{"type":62,"value":2009}," project",{"type":57,"tag":97,"props":2011,"children":2012},{"style":119},[2013],{"type":62,"value":591},{"type":57,"tag":97,"props":2015,"children":2016},{"class":99,"line":110},[2017,2021,2025,2029,2033,2037,2041],{"type":57,"tag":97,"props":2018,"children":2019},{"style":114},[2020],{"type":62,"value":4},{"type":57,"tag":97,"props":2022,"children":2023},{"style":119},[2024],{"type":62,"value":2009},{"type":57,"tag":97,"props":2026,"children":2027},{"style":119},[2028],{"type":62,"value":734},{"type":57,"tag":97,"props":2030,"children":2031},{"style":222},[2032],{"type":62,"value":739},{"type":57,"tag":97,"props":2034,"children":2035},{"style":119},[2036],{"type":62,"value":744},{"type":57,"tag":97,"props":2038,"children":2039},{"style":216},[2040],{"type":62,"value":749},{"type":57,"tag":97,"props":2042,"children":2043},{"style":222},[2044],{"type":62,"value":754},{"type":57,"tag":97,"props":2046,"children":2047},{"class":99,"line":125},[2048,2052,2056,2060,2064,2068,2073],{"type":57,"tag":97,"props":2049,"children":2050},{"style":114},[2051],{"type":62,"value":4},{"type":57,"tag":97,"props":2053,"children":2054},{"style":119},[2055],{"type":62,"value":2009},{"type":57,"tag":97,"props":2057,"children":2058},{"style":119},[2059],{"type":62,"value":858},{"type":57,"tag":97,"props":2061,"children":2062},{"style":119},[2063],{"type":62,"value":667},{"type":57,"tag":97,"props":2065,"children":2066},{"style":222},[2067],{"type":62,"value":672},{"type":57,"tag":97,"props":2069,"children":2070},{"style":119},[2071],{"type":62,"value":2072},"My Project",{"type":57,"tag":97,"props":2074,"children":2075},{"style":222},[2076],{"type":62,"value":682},{"type":57,"tag":97,"props":2078,"children":2079},{"class":99,"line":135},[2080,2084,2088,2092,2096,2100,2104,2108,2112,2116,2121],{"type":57,"tag":97,"props":2081,"children":2082},{"style":114},[2083],{"type":62,"value":4},{"type":57,"tag":97,"props":2085,"children":2086},{"style":119},[2087],{"type":62,"value":2009},{"type":57,"tag":97,"props":2089,"children":2090},{"style":119},[2091],{"type":62,"value":934},{"type":57,"tag":97,"props":2093,"children":2094},{"style":222},[2095],{"type":62,"value":739},{"type":57,"tag":97,"props":2097,"children":2098},{"style":119},[2099],{"type":62,"value":744},{"type":57,"tag":97,"props":2101,"children":2102},{"style":216},[2103],{"type":62,"value":749},{"type":57,"tag":97,"props":2105,"children":2106},{"style":222},[2107],{"type":62,"value":804},{"type":57,"tag":97,"props":2109,"children":2110},{"style":119},[2111],{"type":62,"value":667},{"type":57,"tag":97,"props":2113,"children":2114},{"style":222},[2115],{"type":62,"value":672},{"type":57,"tag":97,"props":2117,"children":2118},{"style":119},[2119],{"type":62,"value":2120},"New Name",{"type":57,"tag":97,"props":2122,"children":2123},{"style":222},[2124],{"type":62,"value":682},{"type":57,"tag":97,"props":2126,"children":2127},{"class":99,"line":144},[2128,2132,2136,2140,2144,2148,2152],{"type":57,"tag":97,"props":2129,"children":2130},{"style":114},[2131],{"type":62,"value":4},{"type":57,"tag":97,"props":2133,"children":2134},{"style":119},[2135],{"type":62,"value":2009},{"type":57,"tag":97,"props":2137,"children":2138},{"style":119},[2139],{"type":62,"value":1121},{"type":57,"tag":97,"props":2141,"children":2142},{"style":222},[2143],{"type":62,"value":739},{"type":57,"tag":97,"props":2145,"children":2146},{"style":119},[2147],{"type":62,"value":744},{"type":57,"tag":97,"props":2149,"children":2150},{"style":216},[2151],{"type":62,"value":749},{"type":57,"tag":97,"props":2153,"children":2154},{"style":222},[2155],{"type":62,"value":754},{"type":57,"tag":97,"props":2157,"children":2158},{"class":99,"line":167},[2159],{"type":57,"tag":97,"props":2160,"children":2161},{"emptyLinePlaceholder":129},[2162],{"type":62,"value":132},{"type":57,"tag":97,"props":2164,"children":2165},{"class":99,"line":189},[2166],{"type":57,"tag":97,"props":2167,"children":2168},{"style":104},[2169],{"type":62,"value":2170},"# Team management\n",{"type":57,"tag":97,"props":2172,"children":2173},{"class":99,"line":197},[2174,2178,2182,2187,2191,2195,2199],{"type":57,"tag":97,"props":2175,"children":2176},{"style":114},[2177],{"type":62,"value":4},{"type":57,"tag":97,"props":2179,"children":2180},{"style":119},[2181],{"type":62,"value":2009},{"type":57,"tag":97,"props":2183,"children":2184},{"style":119},[2185],{"type":62,"value":2186}," members",{"type":57,"tag":97,"props":2188,"children":2189},{"style":222},[2190],{"type":62,"value":739},{"type":57,"tag":97,"props":2192,"children":2193},{"style":119},[2194],{"type":62,"value":744},{"type":57,"tag":97,"props":2196,"children":2197},{"style":216},[2198],{"type":62,"value":749},{"type":57,"tag":97,"props":2200,"children":2201},{"style":222},[2202],{"type":62,"value":754},{"type":57,"tag":97,"props":2204,"children":2205},{"class":99,"line":206},[2206,2210,2214,2219,2223,2227,2231,2235,2240,2244,2249,2253,2258,2262,2267],{"type":57,"tag":97,"props":2207,"children":2208},{"style":114},[2209],{"type":62,"value":4},{"type":57,"tag":97,"props":2211,"children":2212},{"style":119},[2213],{"type":62,"value":2009},{"type":57,"tag":97,"props":2215,"children":2216},{"style":119},[2217],{"type":62,"value":2218}," add-member",{"type":57,"tag":97,"props":2220,"children":2221},{"style":222},[2222],{"type":62,"value":739},{"type":57,"tag":97,"props":2224,"children":2225},{"style":119},[2226],{"type":62,"value":744},{"type":57,"tag":97,"props":2228,"children":2229},{"style":216},[2230],{"type":62,"value":749},{"type":57,"tag":97,"props":2232,"children":2233},{"style":222},[2234],{"type":62,"value":804},{"type":57,"tag":97,"props":2236,"children":2237},{"style":119},[2238],{"type":62,"value":2239}," --user=",{"type":57,"tag":97,"props":2241,"children":2242},{"style":222},[2243],{"type":62,"value":1197},{"type":57,"tag":97,"props":2245,"children":2246},{"style":119},[2247],{"type":62,"value":2248},"userId",{"type":57,"tag":97,"props":2250,"children":2251},{"style":222},[2252],{"type":62,"value":804},{"type":57,"tag":97,"props":2254,"children":2255},{"style":119},[2256],{"type":62,"value":2257}," --role=",{"type":57,"tag":97,"props":2259,"children":2260},{"style":222},[2261],{"type":62,"value":1197},{"type":57,"tag":97,"props":2263,"children":2264},{"style":119},[2265],{"type":62,"value":2266},"role",{"type":57,"tag":97,"props":2268,"children":2269},{"style":222},[2270],{"type":62,"value":754},{"type":57,"tag":97,"props":2272,"children":2273},{"class":99,"line":233},[2274,2278,2282,2287,2291,2295,2299,2303,2307,2311,2315],{"type":57,"tag":97,"props":2275,"children":2276},{"style":114},[2277],{"type":62,"value":4},{"type":57,"tag":97,"props":2279,"children":2280},{"style":119},[2281],{"type":62,"value":2009},{"type":57,"tag":97,"props":2283,"children":2284},{"style":119},[2285],{"type":62,"value":2286}," remove-member",{"type":57,"tag":97,"props":2288,"children":2289},{"style":222},[2290],{"type":62,"value":739},{"type":57,"tag":97,"props":2292,"children":2293},{"style":119},[2294],{"type":62,"value":744},{"type":57,"tag":97,"props":2296,"children":2297},{"style":216},[2298],{"type":62,"value":749},{"type":57,"tag":97,"props":2300,"children":2301},{"style":222},[2302],{"type":62,"value":804},{"type":57,"tag":97,"props":2304,"children":2305},{"style":119},[2306],{"type":62,"value":2239},{"type":57,"tag":97,"props":2308,"children":2309},{"style":222},[2310],{"type":62,"value":1197},{"type":57,"tag":97,"props":2312,"children":2313},{"style":119},[2314],{"type":62,"value":2248},{"type":57,"tag":97,"props":2316,"children":2317},{"style":222},[2318],{"type":62,"value":754},{"type":57,"tag":79,"props":2320,"children":2322},{"id":2321},"tags",[2323],{"type":62,"value":2324},"Tags",{"type":57,"tag":86,"props":2326,"children":2328},{"className":88,"code":2327,"language":90,"meta":91,"style":91},"n8n-cli tag list\nn8n-cli tag create --name=production\nn8n-cli tag update \u003Cid> --name=staging\nn8n-cli tag delete \u003Cid>\n",[2329],{"type":57,"tag":71,"props":2330,"children":2331},{"__ignoreMap":91},[2332,2348,2368,2404],{"type":57,"tag":97,"props":2333,"children":2334},{"class":99,"line":100},[2335,2339,2344],{"type":57,"tag":97,"props":2336,"children":2337},{"style":114},[2338],{"type":62,"value":4},{"type":57,"tag":97,"props":2340,"children":2341},{"style":119},[2342],{"type":62,"value":2343}," tag",{"type":57,"tag":97,"props":2345,"children":2346},{"style":119},[2347],{"type":62,"value":591},{"type":57,"tag":97,"props":2349,"children":2350},{"class":99,"line":110},[2351,2355,2359,2363],{"type":57,"tag":97,"props":2352,"children":2353},{"style":114},[2354],{"type":62,"value":4},{"type":57,"tag":97,"props":2356,"children":2357},{"style":119},[2358],{"type":62,"value":2343},{"type":57,"tag":97,"props":2360,"children":2361},{"style":119},[2362],{"type":62,"value":858},{"type":57,"tag":97,"props":2364,"children":2365},{"style":119},[2366],{"type":62,"value":2367}," --name=production\n",{"type":57,"tag":97,"props":2369,"children":2370},{"class":99,"line":125},[2371,2375,2379,2383,2387,2391,2395,2399],{"type":57,"tag":97,"props":2372,"children":2373},{"style":114},[2374],{"type":62,"value":4},{"type":57,"tag":97,"props":2376,"children":2377},{"style":119},[2378],{"type":62,"value":2343},{"type":57,"tag":97,"props":2380,"children":2381},{"style":119},[2382],{"type":62,"value":934},{"type":57,"tag":97,"props":2384,"children":2385},{"style":222},[2386],{"type":62,"value":739},{"type":57,"tag":97,"props":2388,"children":2389},{"style":119},[2390],{"type":62,"value":744},{"type":57,"tag":97,"props":2392,"children":2393},{"style":216},[2394],{"type":62,"value":749},{"type":57,"tag":97,"props":2396,"children":2397},{"style":222},[2398],{"type":62,"value":804},{"type":57,"tag":97,"props":2400,"children":2401},{"style":119},[2402],{"type":62,"value":2403}," --name=staging\n",{"type":57,"tag":97,"props":2405,"children":2406},{"class":99,"line":135},[2407,2411,2415,2419,2423,2427,2431],{"type":57,"tag":97,"props":2408,"children":2409},{"style":114},[2410],{"type":62,"value":4},{"type":57,"tag":97,"props":2412,"children":2413},{"style":119},[2414],{"type":62,"value":2343},{"type":57,"tag":97,"props":2416,"children":2417},{"style":119},[2418],{"type":62,"value":1121},{"type":57,"tag":97,"props":2420,"children":2421},{"style":222},[2422],{"type":62,"value":739},{"type":57,"tag":97,"props":2424,"children":2425},{"style":119},[2426],{"type":62,"value":744},{"type":57,"tag":97,"props":2428,"children":2429},{"style":216},[2430],{"type":62,"value":749},{"type":57,"tag":97,"props":2432,"children":2433},{"style":222},[2434],{"type":62,"value":754},{"type":57,"tag":79,"props":2436,"children":2438},{"id":2437},"variables",[2439],{"type":62,"value":2440},"Variables",{"type":57,"tag":86,"props":2442,"children":2444},{"className":88,"code":2443,"language":90,"meta":91,"style":91},"n8n-cli variable list\nn8n-cli variable create --key=API_ENDPOINT --value=https:\u002F\u002Fapi.example.com\nn8n-cli variable update \u003Cid> --key=API_ENDPOINT --value=https:\u002F\u002Fnew-api.example.com\nn8n-cli variable delete \u003Cid>\n",[2445],{"type":57,"tag":71,"props":2446,"children":2447},{"__ignoreMap":91},[2448,2464,2489,2529],{"type":57,"tag":97,"props":2449,"children":2450},{"class":99,"line":100},[2451,2455,2460],{"type":57,"tag":97,"props":2452,"children":2453},{"style":114},[2454],{"type":62,"value":4},{"type":57,"tag":97,"props":2456,"children":2457},{"style":119},[2458],{"type":62,"value":2459}," variable",{"type":57,"tag":97,"props":2461,"children":2462},{"style":119},[2463],{"type":62,"value":591},{"type":57,"tag":97,"props":2465,"children":2466},{"class":99,"line":110},[2467,2471,2475,2479,2484],{"type":57,"tag":97,"props":2468,"children":2469},{"style":114},[2470],{"type":62,"value":4},{"type":57,"tag":97,"props":2472,"children":2473},{"style":119},[2474],{"type":62,"value":2459},{"type":57,"tag":97,"props":2476,"children":2477},{"style":119},[2478],{"type":62,"value":858},{"type":57,"tag":97,"props":2480,"children":2481},{"style":119},[2482],{"type":62,"value":2483}," --key=API_ENDPOINT",{"type":57,"tag":97,"props":2485,"children":2486},{"style":119},[2487],{"type":62,"value":2488}," --value=https:\u002F\u002Fapi.example.com\n",{"type":57,"tag":97,"props":2490,"children":2491},{"class":99,"line":125},[2492,2496,2500,2504,2508,2512,2516,2520,2524],{"type":57,"tag":97,"props":2493,"children":2494},{"style":114},[2495],{"type":62,"value":4},{"type":57,"tag":97,"props":2497,"children":2498},{"style":119},[2499],{"type":62,"value":2459},{"type":57,"tag":97,"props":2501,"children":2502},{"style":119},[2503],{"type":62,"value":934},{"type":57,"tag":97,"props":2505,"children":2506},{"style":222},[2507],{"type":62,"value":739},{"type":57,"tag":97,"props":2509,"children":2510},{"style":119},[2511],{"type":62,"value":744},{"type":57,"tag":97,"props":2513,"children":2514},{"style":216},[2515],{"type":62,"value":749},{"type":57,"tag":97,"props":2517,"children":2518},{"style":222},[2519],{"type":62,"value":804},{"type":57,"tag":97,"props":2521,"children":2522},{"style":119},[2523],{"type":62,"value":2483},{"type":57,"tag":97,"props":2525,"children":2526},{"style":119},[2527],{"type":62,"value":2528}," --value=https:\u002F\u002Fnew-api.example.com\n",{"type":57,"tag":97,"props":2530,"children":2531},{"class":99,"line":135},[2532,2536,2540,2544,2548,2552,2556],{"type":57,"tag":97,"props":2533,"children":2534},{"style":114},[2535],{"type":62,"value":4},{"type":57,"tag":97,"props":2537,"children":2538},{"style":119},[2539],{"type":62,"value":2459},{"type":57,"tag":97,"props":2541,"children":2542},{"style":119},[2543],{"type":62,"value":1121},{"type":57,"tag":97,"props":2545,"children":2546},{"style":222},[2547],{"type":62,"value":739},{"type":57,"tag":97,"props":2549,"children":2550},{"style":119},[2551],{"type":62,"value":744},{"type":57,"tag":97,"props":2553,"children":2554},{"style":216},[2555],{"type":62,"value":749},{"type":57,"tag":97,"props":2557,"children":2558},{"style":222},[2559],{"type":62,"value":754},{"type":57,"tag":79,"props":2561,"children":2563},{"id":2562},"data-tables",[2564],{"type":62,"value":2565},"Data Tables",{"type":57,"tag":86,"props":2567,"children":2569},{"className":88,"code":2568,"language":90,"meta":91,"style":91},"# CRUD\nn8n-cli data-table list\nn8n-cli data-table get \u003Cid>\nn8n-cli data-table create --name=Inventory --columns='[{\"name\":\"item\",\"type\":\"string\"},{\"name\":\"qty\",\"type\":\"number\"}]'\nn8n-cli data-table delete \u003Cid>\n\n# Row operations\nn8n-cli data-table rows \u003Cid>\nn8n-cli data-table add-rows \u003Cid> --file=rows.json\nn8n-cli data-table update-rows \u003Cid> --file=rows.json\nn8n-cli data-table upsert-rows \u003Cid> --file=rows.json\nn8n-cli data-table delete-rows \u003Cid> --ids=row1,row2,row3\n\n# All row commands support --stdin\ncat rows.json | n8n-cli data-table add-rows \u003Cid> --stdin\n",[2570],{"type":57,"tag":71,"props":2571,"children":2572},{"__ignoreMap":91},[2573,2581,2597,2628,2666,2697,2704,2712,2744,2781,2817,2853,2890,2897,2905],{"type":57,"tag":97,"props":2574,"children":2575},{"class":99,"line":100},[2576],{"type":57,"tag":97,"props":2577,"children":2578},{"style":104},[2579],{"type":62,"value":2580},"# CRUD\n",{"type":57,"tag":97,"props":2582,"children":2583},{"class":99,"line":110},[2584,2588,2593],{"type":57,"tag":97,"props":2585,"children":2586},{"style":114},[2587],{"type":62,"value":4},{"type":57,"tag":97,"props":2589,"children":2590},{"style":119},[2591],{"type":62,"value":2592}," data-table",{"type":57,"tag":97,"props":2594,"children":2595},{"style":119},[2596],{"type":62,"value":591},{"type":57,"tag":97,"props":2598,"children":2599},{"class":99,"line":125},[2600,2604,2608,2612,2616,2620,2624],{"type":57,"tag":97,"props":2601,"children":2602},{"style":114},[2603],{"type":62,"value":4},{"type":57,"tag":97,"props":2605,"children":2606},{"style":119},[2607],{"type":62,"value":2592},{"type":57,"tag":97,"props":2609,"children":2610},{"style":119},[2611],{"type":62,"value":734},{"type":57,"tag":97,"props":2613,"children":2614},{"style":222},[2615],{"type":62,"value":739},{"type":57,"tag":97,"props":2617,"children":2618},{"style":119},[2619],{"type":62,"value":744},{"type":57,"tag":97,"props":2621,"children":2622},{"style":216},[2623],{"type":62,"value":749},{"type":57,"tag":97,"props":2625,"children":2626},{"style":222},[2627],{"type":62,"value":754},{"type":57,"tag":97,"props":2629,"children":2630},{"class":99,"line":135},[2631,2635,2639,2643,2648,2653,2657,2662],{"type":57,"tag":97,"props":2632,"children":2633},{"style":114},[2634],{"type":62,"value":4},{"type":57,"tag":97,"props":2636,"children":2637},{"style":119},[2638],{"type":62,"value":2592},{"type":57,"tag":97,"props":2640,"children":2641},{"style":119},[2642],{"type":62,"value":858},{"type":57,"tag":97,"props":2644,"children":2645},{"style":119},[2646],{"type":62,"value":2647}," --name=Inventory",{"type":57,"tag":97,"props":2649,"children":2650},{"style":119},[2651],{"type":62,"value":2652}," --columns=",{"type":57,"tag":97,"props":2654,"children":2655},{"style":222},[2656],{"type":62,"value":1754},{"type":57,"tag":97,"props":2658,"children":2659},{"style":119},[2660],{"type":62,"value":2661},"[{\"name\":\"item\",\"type\":\"string\"},{\"name\":\"qty\",\"type\":\"number\"}]",{"type":57,"tag":97,"props":2663,"children":2664},{"style":222},[2665],{"type":62,"value":824},{"type":57,"tag":97,"props":2667,"children":2668},{"class":99,"line":144},[2669,2673,2677,2681,2685,2689,2693],{"type":57,"tag":97,"props":2670,"children":2671},{"style":114},[2672],{"type":62,"value":4},{"type":57,"tag":97,"props":2674,"children":2675},{"style":119},[2676],{"type":62,"value":2592},{"type":57,"tag":97,"props":2678,"children":2679},{"style":119},[2680],{"type":62,"value":1121},{"type":57,"tag":97,"props":2682,"children":2683},{"style":222},[2684],{"type":62,"value":739},{"type":57,"tag":97,"props":2686,"children":2687},{"style":119},[2688],{"type":62,"value":744},{"type":57,"tag":97,"props":2690,"children":2691},{"style":216},[2692],{"type":62,"value":749},{"type":57,"tag":97,"props":2694,"children":2695},{"style":222},[2696],{"type":62,"value":754},{"type":57,"tag":97,"props":2698,"children":2699},{"class":99,"line":167},[2700],{"type":57,"tag":97,"props":2701,"children":2702},{"emptyLinePlaceholder":129},[2703],{"type":62,"value":132},{"type":57,"tag":97,"props":2705,"children":2706},{"class":99,"line":189},[2707],{"type":57,"tag":97,"props":2708,"children":2709},{"style":104},[2710],{"type":62,"value":2711},"# Row operations\n",{"type":57,"tag":97,"props":2713,"children":2714},{"class":99,"line":197},[2715,2719,2723,2728,2732,2736,2740],{"type":57,"tag":97,"props":2716,"children":2717},{"style":114},[2718],{"type":62,"value":4},{"type":57,"tag":97,"props":2720,"children":2721},{"style":119},[2722],{"type":62,"value":2592},{"type":57,"tag":97,"props":2724,"children":2725},{"style":119},[2726],{"type":62,"value":2727}," rows",{"type":57,"tag":97,"props":2729,"children":2730},{"style":222},[2731],{"type":62,"value":739},{"type":57,"tag":97,"props":2733,"children":2734},{"style":119},[2735],{"type":62,"value":744},{"type":57,"tag":97,"props":2737,"children":2738},{"style":216},[2739],{"type":62,"value":749},{"type":57,"tag":97,"props":2741,"children":2742},{"style":222},[2743],{"type":62,"value":754},{"type":57,"tag":97,"props":2745,"children":2746},{"class":99,"line":206},[2747,2751,2755,2760,2764,2768,2772,2776],{"type":57,"tag":97,"props":2748,"children":2749},{"style":114},[2750],{"type":62,"value":4},{"type":57,"tag":97,"props":2752,"children":2753},{"style":119},[2754],{"type":62,"value":2592},{"type":57,"tag":97,"props":2756,"children":2757},{"style":119},[2758],{"type":62,"value":2759}," add-rows",{"type":57,"tag":97,"props":2761,"children":2762},{"style":222},[2763],{"type":62,"value":739},{"type":57,"tag":97,"props":2765,"children":2766},{"style":119},[2767],{"type":62,"value":744},{"type":57,"tag":97,"props":2769,"children":2770},{"style":216},[2771],{"type":62,"value":749},{"type":57,"tag":97,"props":2773,"children":2774},{"style":222},[2775],{"type":62,"value":804},{"type":57,"tag":97,"props":2777,"children":2778},{"style":119},[2779],{"type":62,"value":2780}," --file=rows.json\n",{"type":57,"tag":97,"props":2782,"children":2783},{"class":99,"line":233},[2784,2788,2792,2797,2801,2805,2809,2813],{"type":57,"tag":97,"props":2785,"children":2786},{"style":114},[2787],{"type":62,"value":4},{"type":57,"tag":97,"props":2789,"children":2790},{"style":119},[2791],{"type":62,"value":2592},{"type":57,"tag":97,"props":2793,"children":2794},{"style":119},[2795],{"type":62,"value":2796}," update-rows",{"type":57,"tag":97,"props":2798,"children":2799},{"style":222},[2800],{"type":62,"value":739},{"type":57,"tag":97,"props":2802,"children":2803},{"style":119},[2804],{"type":62,"value":744},{"type":57,"tag":97,"props":2806,"children":2807},{"style":216},[2808],{"type":62,"value":749},{"type":57,"tag":97,"props":2810,"children":2811},{"style":222},[2812],{"type":62,"value":804},{"type":57,"tag":97,"props":2814,"children":2815},{"style":119},[2816],{"type":62,"value":2780},{"type":57,"tag":97,"props":2818,"children":2819},{"class":99,"line":720},[2820,2824,2828,2833,2837,2841,2845,2849],{"type":57,"tag":97,"props":2821,"children":2822},{"style":114},[2823],{"type":62,"value":4},{"type":57,"tag":97,"props":2825,"children":2826},{"style":119},[2827],{"type":62,"value":2592},{"type":57,"tag":97,"props":2829,"children":2830},{"style":119},[2831],{"type":62,"value":2832}," upsert-rows",{"type":57,"tag":97,"props":2834,"children":2835},{"style":222},[2836],{"type":62,"value":739},{"type":57,"tag":97,"props":2838,"children":2839},{"style":119},[2840],{"type":62,"value":744},{"type":57,"tag":97,"props":2842,"children":2843},{"style":216},[2844],{"type":62,"value":749},{"type":57,"tag":97,"props":2846,"children":2847},{"style":222},[2848],{"type":62,"value":804},{"type":57,"tag":97,"props":2850,"children":2851},{"style":119},[2852],{"type":62,"value":2780},{"type":57,"tag":97,"props":2854,"children":2855},{"class":99,"line":757},[2856,2860,2864,2869,2873,2877,2881,2885],{"type":57,"tag":97,"props":2857,"children":2858},{"style":114},[2859],{"type":62,"value":4},{"type":57,"tag":97,"props":2861,"children":2862},{"style":119},[2863],{"type":62,"value":2592},{"type":57,"tag":97,"props":2865,"children":2866},{"style":119},[2867],{"type":62,"value":2868}," delete-rows",{"type":57,"tag":97,"props":2870,"children":2871},{"style":222},[2872],{"type":62,"value":739},{"type":57,"tag":97,"props":2874,"children":2875},{"style":119},[2876],{"type":62,"value":744},{"type":57,"tag":97,"props":2878,"children":2879},{"style":216},[2880],{"type":62,"value":749},{"type":57,"tag":97,"props":2882,"children":2883},{"style":222},[2884],{"type":62,"value":804},{"type":57,"tag":97,"props":2886,"children":2887},{"style":119},[2888],{"type":62,"value":2889}," --ids=row1,row2,row3\n",{"type":57,"tag":97,"props":2891,"children":2892},{"class":99,"line":765},[2893],{"type":57,"tag":97,"props":2894,"children":2895},{"emptyLinePlaceholder":129},[2896],{"type":62,"value":132},{"type":57,"tag":97,"props":2898,"children":2899},{"class":99,"line":774},[2900],{"type":57,"tag":97,"props":2901,"children":2902},{"style":104},[2903],{"type":62,"value":2904},"# All row commands support --stdin\n",{"type":57,"tag":97,"props":2906,"children":2907},{"class":99,"line":827},[2908,2912,2917,2921,2925,2929,2933,2937,2941,2945,2949],{"type":57,"tag":97,"props":2909,"children":2910},{"style":114},[2911],{"type":62,"value":872},{"type":57,"tag":97,"props":2913,"children":2914},{"style":119},[2915],{"type":62,"value":2916}," rows.json",{"type":57,"tag":97,"props":2918,"children":2919},{"style":222},[2920],{"type":62,"value":882},{"type":57,"tag":97,"props":2922,"children":2923},{"style":114},[2924],{"type":62,"value":887},{"type":57,"tag":97,"props":2926,"children":2927},{"style":119},[2928],{"type":62,"value":2592},{"type":57,"tag":97,"props":2930,"children":2931},{"style":119},[2932],{"type":62,"value":2759},{"type":57,"tag":97,"props":2934,"children":2935},{"style":222},[2936],{"type":62,"value":739},{"type":57,"tag":97,"props":2938,"children":2939},{"style":119},[2940],{"type":62,"value":744},{"type":57,"tag":97,"props":2942,"children":2943},{"style":216},[2944],{"type":62,"value":749},{"type":57,"tag":97,"props":2946,"children":2947},{"style":222},[2948],{"type":62,"value":804},{"type":57,"tag":97,"props":2950,"children":2951},{"style":119},[2952],{"type":62,"value":900},{"type":57,"tag":79,"props":2954,"children":2956},{"id":2955},"users",[2957],{"type":62,"value":2958},"Users",{"type":57,"tag":86,"props":2960,"children":2962},{"className":88,"code":2961,"language":90,"meta":91,"style":91},"n8n-cli user list\nn8n-cli user get \u003Cid>\n",[2963],{"type":57,"tag":71,"props":2964,"children":2965},{"__ignoreMap":91},[2966,2982],{"type":57,"tag":97,"props":2967,"children":2968},{"class":99,"line":100},[2969,2973,2978],{"type":57,"tag":97,"props":2970,"children":2971},{"style":114},[2972],{"type":62,"value":4},{"type":57,"tag":97,"props":2974,"children":2975},{"style":119},[2976],{"type":62,"value":2977}," user",{"type":57,"tag":97,"props":2979,"children":2980},{"style":119},[2981],{"type":62,"value":591},{"type":57,"tag":97,"props":2983,"children":2984},{"class":99,"line":110},[2985,2989,2993,2997,3001,3005,3009],{"type":57,"tag":97,"props":2986,"children":2987},{"style":114},[2988],{"type":62,"value":4},{"type":57,"tag":97,"props":2990,"children":2991},{"style":119},[2992],{"type":62,"value":2977},{"type":57,"tag":97,"props":2994,"children":2995},{"style":119},[2996],{"type":62,"value":734},{"type":57,"tag":97,"props":2998,"children":2999},{"style":222},[3000],{"type":62,"value":739},{"type":57,"tag":97,"props":3002,"children":3003},{"style":119},[3004],{"type":62,"value":744},{"type":57,"tag":97,"props":3006,"children":3007},{"style":216},[3008],{"type":62,"value":749},{"type":57,"tag":97,"props":3010,"children":3011},{"style":222},[3012],{"type":62,"value":754},{"type":57,"tag":79,"props":3014,"children":3016},{"id":3015},"other",[3017],{"type":62,"value":3018},"Other",{"type":57,"tag":86,"props":3020,"children":3022},{"className":88,"code":3021,"language":90,"meta":91,"style":91},"# Security audit\nn8n-cli audit\nn8n-cli audit --categories=credentials,nodes\n\n# Source control\nn8n-cli source-control pull\n\n# View config\nn8n-cli config show\n",[3023],{"type":57,"tag":71,"props":3024,"children":3025},{"__ignoreMap":91},[3026,3034,3046,3063,3070,3078,3095,3102,3110],{"type":57,"tag":97,"props":3027,"children":3028},{"class":99,"line":100},[3029],{"type":57,"tag":97,"props":3030,"children":3031},{"style":104},[3032],{"type":62,"value":3033},"# Security audit\n",{"type":57,"tag":97,"props":3035,"children":3036},{"class":99,"line":110},[3037,3041],{"type":57,"tag":97,"props":3038,"children":3039},{"style":114},[3040],{"type":62,"value":4},{"type":57,"tag":97,"props":3042,"children":3043},{"style":119},[3044],{"type":62,"value":3045}," audit\n",{"type":57,"tag":97,"props":3047,"children":3048},{"class":99,"line":125},[3049,3053,3058],{"type":57,"tag":97,"props":3050,"children":3051},{"style":114},[3052],{"type":62,"value":4},{"type":57,"tag":97,"props":3054,"children":3055},{"style":119},[3056],{"type":62,"value":3057}," audit",{"type":57,"tag":97,"props":3059,"children":3060},{"style":119},[3061],{"type":62,"value":3062}," --categories=credentials,nodes\n",{"type":57,"tag":97,"props":3064,"children":3065},{"class":99,"line":135},[3066],{"type":57,"tag":97,"props":3067,"children":3068},{"emptyLinePlaceholder":129},[3069],{"type":62,"value":132},{"type":57,"tag":97,"props":3071,"children":3072},{"class":99,"line":144},[3073],{"type":57,"tag":97,"props":3074,"children":3075},{"style":104},[3076],{"type":62,"value":3077},"# Source control\n",{"type":57,"tag":97,"props":3079,"children":3080},{"class":99,"line":167},[3081,3085,3090],{"type":57,"tag":97,"props":3082,"children":3083},{"style":114},[3084],{"type":62,"value":4},{"type":57,"tag":97,"props":3086,"children":3087},{"style":119},[3088],{"type":62,"value":3089}," source-control",{"type":57,"tag":97,"props":3091,"children":3092},{"style":119},[3093],{"type":62,"value":3094}," pull\n",{"type":57,"tag":97,"props":3096,"children":3097},{"class":99,"line":189},[3098],{"type":57,"tag":97,"props":3099,"children":3100},{"emptyLinePlaceholder":129},[3101],{"type":62,"value":132},{"type":57,"tag":97,"props":3103,"children":3104},{"class":99,"line":197},[3105],{"type":57,"tag":97,"props":3106,"children":3107},{"style":104},[3108],{"type":62,"value":3109},"# View config\n",{"type":57,"tag":97,"props":3111,"children":3112},{"class":99,"line":206},[3113,3117,3121],{"type":57,"tag":97,"props":3114,"children":3115},{"style":114},[3116],{"type":62,"value":4},{"type":57,"tag":97,"props":3118,"children":3119},{"style":119},[3120],{"type":62,"value":154},{"type":57,"tag":97,"props":3122,"children":3123},{"style":119},[3124],{"type":62,"value":3125}," show\n",{"type":57,"tag":79,"props":3127,"children":3129},{"id":3128},"composability-patterns",[3130],{"type":62,"value":3131},"Composability Patterns",{"type":57,"tag":65,"props":3133,"children":3134},{},[3135],{"type":62,"value":3136},"The CLI is designed to be piped and composed:",{"type":57,"tag":86,"props":3138,"children":3140},{"className":88,"code":3139,"language":90,"meta":91,"style":91},"# Get all workflow IDs\nn8n-cli workflow list --jq '.[].id'\n\n# Get the name of the first workflow\nn8n-cli workflow list --jq '.[0].name'\n\n# Export a workflow to a file\nn8n-cli workflow get 1234 --json > workflow-backup.json\n\n# Find failing executions for a workflow\nn8n-cli execution list --workflow=1234 --status=error --json\n\n# Pipe workflow JSON for modification\nn8n-cli workflow get 1234 --json | jq '.name = \"Updated Name\"' | n8n-cli workflow update 1234 --stdin\n\n# Table output without headers for shell parsing\nn8n-cli workflow list --no-header | awk '{print $1}'\n\n# Debug API calls\nn8n-cli workflow list --debug 2>debug.log\n",[3141],{"type":57,"tag":71,"props":3142,"children":3143},{"__ignoreMap":91},[3144,3152,3184,3191,3199,3231,3238,3246,3282,3289,3297,3326,3333,3341,3410,3417,3425,3467,3474,3482],{"type":57,"tag":97,"props":3145,"children":3146},{"class":99,"line":100},[3147],{"type":57,"tag":97,"props":3148,"children":3149},{"style":104},[3150],{"type":62,"value":3151},"# Get all workflow IDs\n",{"type":57,"tag":97,"props":3153,"children":3154},{"class":99,"line":110},[3155,3159,3163,3167,3171,3175,3180],{"type":57,"tag":97,"props":3156,"children":3157},{"style":114},[3158],{"type":62,"value":4},{"type":57,"tag":97,"props":3160,"children":3161},{"style":119},[3162],{"type":62,"value":586},{"type":57,"tag":97,"props":3164,"children":3165},{"style":119},[3166],{"type":62,"value":622},{"type":57,"tag":97,"props":3168,"children":3169},{"style":119},[3170],{"type":62,"value":809},{"type":57,"tag":97,"props":3172,"children":3173},{"style":222},[3174],{"type":62,"value":814},{"type":57,"tag":97,"props":3176,"children":3177},{"style":119},[3178],{"type":62,"value":3179},".[].id",{"type":57,"tag":97,"props":3181,"children":3182},{"style":222},[3183],{"type":62,"value":824},{"type":57,"tag":97,"props":3185,"children":3186},{"class":99,"line":125},[3187],{"type":57,"tag":97,"props":3188,"children":3189},{"emptyLinePlaceholder":129},[3190],{"type":62,"value":132},{"type":57,"tag":97,"props":3192,"children":3193},{"class":99,"line":135},[3194],{"type":57,"tag":97,"props":3195,"children":3196},{"style":104},[3197],{"type":62,"value":3198},"# Get the name of the first workflow\n",{"type":57,"tag":97,"props":3200,"children":3201},{"class":99,"line":144},[3202,3206,3210,3214,3218,3222,3227],{"type":57,"tag":97,"props":3203,"children":3204},{"style":114},[3205],{"type":62,"value":4},{"type":57,"tag":97,"props":3207,"children":3208},{"style":119},[3209],{"type":62,"value":586},{"type":57,"tag":97,"props":3211,"children":3212},{"style":119},[3213],{"type":62,"value":622},{"type":57,"tag":97,"props":3215,"children":3216},{"style":119},[3217],{"type":62,"value":809},{"type":57,"tag":97,"props":3219,"children":3220},{"style":222},[3221],{"type":62,"value":814},{"type":57,"tag":97,"props":3223,"children":3224},{"style":119},[3225],{"type":62,"value":3226},".[0].name",{"type":57,"tag":97,"props":3228,"children":3229},{"style":222},[3230],{"type":62,"value":824},{"type":57,"tag":97,"props":3232,"children":3233},{"class":99,"line":167},[3234],{"type":57,"tag":97,"props":3235,"children":3236},{"emptyLinePlaceholder":129},[3237],{"type":62,"value":132},{"type":57,"tag":97,"props":3239,"children":3240},{"class":99,"line":189},[3241],{"type":57,"tag":97,"props":3242,"children":3243},{"style":104},[3244],{"type":62,"value":3245},"# Export a workflow to a file\n",{"type":57,"tag":97,"props":3247,"children":3248},{"class":99,"line":197},[3249,3253,3257,3261,3267,3272,3277],{"type":57,"tag":97,"props":3250,"children":3251},{"style":114},[3252],{"type":62,"value":4},{"type":57,"tag":97,"props":3254,"children":3255},{"style":119},[3256],{"type":62,"value":586},{"type":57,"tag":97,"props":3258,"children":3259},{"style":119},[3260],{"type":62,"value":734},{"type":57,"tag":97,"props":3262,"children":3264},{"style":3263},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[3265],{"type":62,"value":3266}," 1234",{"type":57,"tag":97,"props":3268,"children":3269},{"style":119},[3270],{"type":62,"value":3271}," --json",{"type":57,"tag":97,"props":3273,"children":3274},{"style":222},[3275],{"type":62,"value":3276}," >",{"type":57,"tag":97,"props":3278,"children":3279},{"style":119},[3280],{"type":62,"value":3281}," workflow-backup.json\n",{"type":57,"tag":97,"props":3283,"children":3284},{"class":99,"line":206},[3285],{"type":57,"tag":97,"props":3286,"children":3287},{"emptyLinePlaceholder":129},[3288],{"type":62,"value":132},{"type":57,"tag":97,"props":3290,"children":3291},{"class":99,"line":233},[3292],{"type":57,"tag":97,"props":3293,"children":3294},{"style":104},[3295],{"type":62,"value":3296},"# Find failing executions for a workflow\n",{"type":57,"tag":97,"props":3298,"children":3299},{"class":99,"line":720},[3300,3304,3308,3312,3317,3321],{"type":57,"tag":97,"props":3301,"children":3302},{"style":114},[3303],{"type":62,"value":4},{"type":57,"tag":97,"props":3305,"children":3306},{"style":119},[3307],{"type":62,"value":1289},{"type":57,"tag":97,"props":3309,"children":3310},{"style":119},[3311],{"type":62,"value":622},{"type":57,"tag":97,"props":3313,"children":3314},{"style":119},[3315],{"type":62,"value":3316}," --workflow=1234",{"type":57,"tag":97,"props":3318,"children":3319},{"style":119},[3320],{"type":62,"value":1331},{"type":57,"tag":97,"props":3322,"children":3323},{"style":119},[3324],{"type":62,"value":3325}," --json\n",{"type":57,"tag":97,"props":3327,"children":3328},{"class":99,"line":757},[3329],{"type":57,"tag":97,"props":3330,"children":3331},{"emptyLinePlaceholder":129},[3332],{"type":62,"value":132},{"type":57,"tag":97,"props":3334,"children":3335},{"class":99,"line":765},[3336],{"type":57,"tag":97,"props":3337,"children":3338},{"style":104},[3339],{"type":62,"value":3340},"# Pipe workflow JSON for modification\n",{"type":57,"tag":97,"props":3342,"children":3343},{"class":99,"line":774},[3344,3348,3352,3356,3360,3364,3368,3373,3377,3382,3386,3390,3394,3398,3402,3406],{"type":57,"tag":97,"props":3345,"children":3346},{"style":114},[3347],{"type":62,"value":4},{"type":57,"tag":97,"props":3349,"children":3350},{"style":119},[3351],{"type":62,"value":586},{"type":57,"tag":97,"props":3353,"children":3354},{"style":119},[3355],{"type":62,"value":734},{"type":57,"tag":97,"props":3357,"children":3358},{"style":3263},[3359],{"type":62,"value":3266},{"type":57,"tag":97,"props":3361,"children":3362},{"style":119},[3363],{"type":62,"value":3271},{"type":57,"tag":97,"props":3365,"children":3366},{"style":222},[3367],{"type":62,"value":882},{"type":57,"tag":97,"props":3369,"children":3370},{"style":114},[3371],{"type":62,"value":3372}," jq",{"type":57,"tag":97,"props":3374,"children":3375},{"style":222},[3376],{"type":62,"value":814},{"type":57,"tag":97,"props":3378,"children":3379},{"style":119},[3380],{"type":62,"value":3381},".name = \"Updated Name\"",{"type":57,"tag":97,"props":3383,"children":3384},{"style":222},[3385],{"type":62,"value":1754},{"type":57,"tag":97,"props":3387,"children":3388},{"style":222},[3389],{"type":62,"value":882},{"type":57,"tag":97,"props":3391,"children":3392},{"style":114},[3393],{"type":62,"value":887},{"type":57,"tag":97,"props":3395,"children":3396},{"style":119},[3397],{"type":62,"value":586},{"type":57,"tag":97,"props":3399,"children":3400},{"style":119},[3401],{"type":62,"value":934},{"type":57,"tag":97,"props":3403,"children":3404},{"style":3263},[3405],{"type":62,"value":3266},{"type":57,"tag":97,"props":3407,"children":3408},{"style":119},[3409],{"type":62,"value":900},{"type":57,"tag":97,"props":3411,"children":3412},{"class":99,"line":827},[3413],{"type":57,"tag":97,"props":3414,"children":3415},{"emptyLinePlaceholder":129},[3416],{"type":62,"value":132},{"type":57,"tag":97,"props":3418,"children":3419},{"class":99,"line":835},[3420],{"type":57,"tag":97,"props":3421,"children":3422},{"style":104},[3423],{"type":62,"value":3424},"# Table output without headers for shell parsing\n",{"type":57,"tag":97,"props":3426,"children":3427},{"class":99,"line":844},[3428,3432,3436,3440,3445,3449,3454,3458,3463],{"type":57,"tag":97,"props":3429,"children":3430},{"style":114},[3431],{"type":62,"value":4},{"type":57,"tag":97,"props":3433,"children":3434},{"style":119},[3435],{"type":62,"value":586},{"type":57,"tag":97,"props":3437,"children":3438},{"style":119},[3439],{"type":62,"value":622},{"type":57,"tag":97,"props":3441,"children":3442},{"style":119},[3443],{"type":62,"value":3444}," --no-header",{"type":57,"tag":97,"props":3446,"children":3447},{"style":222},[3448],{"type":62,"value":882},{"type":57,"tag":97,"props":3450,"children":3451},{"style":114},[3452],{"type":62,"value":3453}," awk",{"type":57,"tag":97,"props":3455,"children":3456},{"style":222},[3457],{"type":62,"value":814},{"type":57,"tag":97,"props":3459,"children":3460},{"style":119},[3461],{"type":62,"value":3462},"{print $1}",{"type":57,"tag":97,"props":3464,"children":3465},{"style":222},[3466],{"type":62,"value":824},{"type":57,"tag":97,"props":3468,"children":3469},{"class":99,"line":866},[3470],{"type":57,"tag":97,"props":3471,"children":3472},{"emptyLinePlaceholder":129},[3473],{"type":62,"value":132},{"type":57,"tag":97,"props":3475,"children":3476},{"class":99,"line":903},[3477],{"type":57,"tag":97,"props":3478,"children":3479},{"style":104},[3480],{"type":62,"value":3481},"# Debug API calls\n",{"type":57,"tag":97,"props":3483,"children":3484},{"class":99,"line":911},[3485,3489,3493,3497,3502,3507],{"type":57,"tag":97,"props":3486,"children":3487},{"style":114},[3488],{"type":62,"value":4},{"type":57,"tag":97,"props":3490,"children":3491},{"style":119},[3492],{"type":62,"value":586},{"type":57,"tag":97,"props":3494,"children":3495},{"style":119},[3496],{"type":62,"value":622},{"type":57,"tag":97,"props":3498,"children":3499},{"style":119},[3500],{"type":62,"value":3501}," --debug",{"type":57,"tag":97,"props":3503,"children":3504},{"style":222},[3505],{"type":62,"value":3506}," 2>",{"type":57,"tag":97,"props":3508,"children":3509},{"style":119},[3510],{"type":62,"value":3511},"debug.log\n",{"type":57,"tag":79,"props":3513,"children":3515},{"id":3514},"workflow-json-structure",[3516],{"type":62,"value":3517},"Workflow JSON Structure",{"type":57,"tag":65,"props":3519,"children":3520},{},[3521],{"type":62,"value":3522},"When creating or updating workflows, the JSON follows this structure:",{"type":57,"tag":86,"props":3524,"children":3527},{"className":3525,"code":3526,"language":387,"meta":91,"style":91},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"name\": \"My Workflow\",\n  \"nodes\": [\n    {\n      \"name\": \"Start\",\n      \"type\": \"n8n-nodes-base.manualTrigger\",\n      \"position\": [250, 300],\n      \"parameters\": {}\n    },\n    {\n      \"name\": \"HTTP Request\",\n      \"type\": \"n8n-nodes-base.httpRequest\",\n      \"position\": [450, 300],\n      \"parameters\": {\n        \"url\": \"https:\u002F\u002Fapi.example.com\u002Fdata\",\n        \"method\": \"GET\"\n      }\n    }\n  ],\n  \"connections\": {\n    \"Start\": {\n      \"main\": [[{ \"node\": \"HTTP Request\", \"type\": \"main\", \"index\": 0 }]]\n    }\n  }\n}\n",[3528],{"type":57,"tag":71,"props":3529,"children":3530},{"__ignoreMap":91},[3531,3539,3579,3604,3612,3649,3686,3731,3756,3764,3771,3807,3843,3883,3907,3945,3978,3986,3994,4002,4026,4050,4168,4175,4183],{"type":57,"tag":97,"props":3532,"children":3533},{"class":99,"line":100},[3534],{"type":57,"tag":97,"props":3535,"children":3536},{"style":222},[3537],{"type":62,"value":3538},"{\n",{"type":57,"tag":97,"props":3540,"children":3541},{"class":99,"line":110},[3542,3547,3552,3556,3561,3566,3570,3574],{"type":57,"tag":97,"props":3543,"children":3544},{"style":222},[3545],{"type":62,"value":3546},"  \"",{"type":57,"tag":97,"props":3548,"children":3549},{"style":210},[3550],{"type":62,"value":3551},"name",{"type":57,"tag":97,"props":3553,"children":3554},{"style":222},[3555],{"type":62,"value":672},{"type":57,"tag":97,"props":3557,"children":3558},{"style":222},[3559],{"type":62,"value":3560},":",{"type":57,"tag":97,"props":3562,"children":3563},{"style":222},[3564],{"type":62,"value":3565}," \"",{"type":57,"tag":97,"props":3567,"children":3568},{"style":119},[3569],{"type":62,"value":677},{"type":57,"tag":97,"props":3571,"children":3572},{"style":222},[3573],{"type":62,"value":672},{"type":57,"tag":97,"props":3575,"children":3576},{"style":222},[3577],{"type":62,"value":3578},",\n",{"type":57,"tag":97,"props":3580,"children":3581},{"class":99,"line":125},[3582,3586,3591,3595,3599],{"type":57,"tag":97,"props":3583,"children":3584},{"style":222},[3585],{"type":62,"value":3546},{"type":57,"tag":97,"props":3587,"children":3588},{"style":210},[3589],{"type":62,"value":3590},"nodes",{"type":57,"tag":97,"props":3592,"children":3593},{"style":222},[3594],{"type":62,"value":672},{"type":57,"tag":97,"props":3596,"children":3597},{"style":222},[3598],{"type":62,"value":3560},{"type":57,"tag":97,"props":3600,"children":3601},{"style":222},[3602],{"type":62,"value":3603}," [\n",{"type":57,"tag":97,"props":3605,"children":3606},{"class":99,"line":135},[3607],{"type":57,"tag":97,"props":3608,"children":3609},{"style":222},[3610],{"type":62,"value":3611},"    {\n",{"type":57,"tag":97,"props":3613,"children":3614},{"class":99,"line":144},[3615,3620,3624,3628,3632,3636,3641,3645],{"type":57,"tag":97,"props":3616,"children":3617},{"style":222},[3618],{"type":62,"value":3619},"      \"",{"type":57,"tag":97,"props":3621,"children":3622},{"style":114},[3623],{"type":62,"value":3551},{"type":57,"tag":97,"props":3625,"children":3626},{"style":222},[3627],{"type":62,"value":672},{"type":57,"tag":97,"props":3629,"children":3630},{"style":222},[3631],{"type":62,"value":3560},{"type":57,"tag":97,"props":3633,"children":3634},{"style":222},[3635],{"type":62,"value":3565},{"type":57,"tag":97,"props":3637,"children":3638},{"style":119},[3639],{"type":62,"value":3640},"Start",{"type":57,"tag":97,"props":3642,"children":3643},{"style":222},[3644],{"type":62,"value":672},{"type":57,"tag":97,"props":3646,"children":3647},{"style":222},[3648],{"type":62,"value":3578},{"type":57,"tag":97,"props":3650,"children":3651},{"class":99,"line":167},[3652,3656,3661,3665,3669,3673,3678,3682],{"type":57,"tag":97,"props":3653,"children":3654},{"style":222},[3655],{"type":62,"value":3619},{"type":57,"tag":97,"props":3657,"children":3658},{"style":114},[3659],{"type":62,"value":3660},"type",{"type":57,"tag":97,"props":3662,"children":3663},{"style":222},[3664],{"type":62,"value":672},{"type":57,"tag":97,"props":3666,"children":3667},{"style":222},[3668],{"type":62,"value":3560},{"type":57,"tag":97,"props":3670,"children":3671},{"style":222},[3672],{"type":62,"value":3565},{"type":57,"tag":97,"props":3674,"children":3675},{"style":119},[3676],{"type":62,"value":3677},"n8n-nodes-base.manualTrigger",{"type":57,"tag":97,"props":3679,"children":3680},{"style":222},[3681],{"type":62,"value":672},{"type":57,"tag":97,"props":3683,"children":3684},{"style":222},[3685],{"type":62,"value":3578},{"type":57,"tag":97,"props":3687,"children":3688},{"class":99,"line":189},[3689,3693,3698,3702,3706,3711,3716,3721,3726],{"type":57,"tag":97,"props":3690,"children":3691},{"style":222},[3692],{"type":62,"value":3619},{"type":57,"tag":97,"props":3694,"children":3695},{"style":114},[3696],{"type":62,"value":3697},"position",{"type":57,"tag":97,"props":3699,"children":3700},{"style":222},[3701],{"type":62,"value":672},{"type":57,"tag":97,"props":3703,"children":3704},{"style":222},[3705],{"type":62,"value":3560},{"type":57,"tag":97,"props":3707,"children":3708},{"style":222},[3709],{"type":62,"value":3710}," [",{"type":57,"tag":97,"props":3712,"children":3713},{"style":3263},[3714],{"type":62,"value":3715},"250",{"type":57,"tag":97,"props":3717,"children":3718},{"style":222},[3719],{"type":62,"value":3720},",",{"type":57,"tag":97,"props":3722,"children":3723},{"style":3263},[3724],{"type":62,"value":3725}," 300",{"type":57,"tag":97,"props":3727,"children":3728},{"style":222},[3729],{"type":62,"value":3730},"],\n",{"type":57,"tag":97,"props":3732,"children":3733},{"class":99,"line":197},[3734,3738,3743,3747,3751],{"type":57,"tag":97,"props":3735,"children":3736},{"style":222},[3737],{"type":62,"value":3619},{"type":57,"tag":97,"props":3739,"children":3740},{"style":114},[3741],{"type":62,"value":3742},"parameters",{"type":57,"tag":97,"props":3744,"children":3745},{"style":222},[3746],{"type":62,"value":672},{"type":57,"tag":97,"props":3748,"children":3749},{"style":222},[3750],{"type":62,"value":3560},{"type":57,"tag":97,"props":3752,"children":3753},{"style":222},[3754],{"type":62,"value":3755}," {}\n",{"type":57,"tag":97,"props":3757,"children":3758},{"class":99,"line":206},[3759],{"type":57,"tag":97,"props":3760,"children":3761},{"style":222},[3762],{"type":62,"value":3763},"    },\n",{"type":57,"tag":97,"props":3765,"children":3766},{"class":99,"line":233},[3767],{"type":57,"tag":97,"props":3768,"children":3769},{"style":222},[3770],{"type":62,"value":3611},{"type":57,"tag":97,"props":3772,"children":3773},{"class":99,"line":720},[3774,3778,3782,3786,3790,3794,3799,3803],{"type":57,"tag":97,"props":3775,"children":3776},{"style":222},[3777],{"type":62,"value":3619},{"type":57,"tag":97,"props":3779,"children":3780},{"style":114},[3781],{"type":62,"value":3551},{"type":57,"tag":97,"props":3783,"children":3784},{"style":222},[3785],{"type":62,"value":672},{"type":57,"tag":97,"props":3787,"children":3788},{"style":222},[3789],{"type":62,"value":3560},{"type":57,"tag":97,"props":3791,"children":3792},{"style":222},[3793],{"type":62,"value":3565},{"type":57,"tag":97,"props":3795,"children":3796},{"style":119},[3797],{"type":62,"value":3798},"HTTP Request",{"type":57,"tag":97,"props":3800,"children":3801},{"style":222},[3802],{"type":62,"value":672},{"type":57,"tag":97,"props":3804,"children":3805},{"style":222},[3806],{"type":62,"value":3578},{"type":57,"tag":97,"props":3808,"children":3809},{"class":99,"line":757},[3810,3814,3818,3822,3826,3830,3835,3839],{"type":57,"tag":97,"props":3811,"children":3812},{"style":222},[3813],{"type":62,"value":3619},{"type":57,"tag":97,"props":3815,"children":3816},{"style":114},[3817],{"type":62,"value":3660},{"type":57,"tag":97,"props":3819,"children":3820},{"style":222},[3821],{"type":62,"value":672},{"type":57,"tag":97,"props":3823,"children":3824},{"style":222},[3825],{"type":62,"value":3560},{"type":57,"tag":97,"props":3827,"children":3828},{"style":222},[3829],{"type":62,"value":3565},{"type":57,"tag":97,"props":3831,"children":3832},{"style":119},[3833],{"type":62,"value":3834},"n8n-nodes-base.httpRequest",{"type":57,"tag":97,"props":3836,"children":3837},{"style":222},[3838],{"type":62,"value":672},{"type":57,"tag":97,"props":3840,"children":3841},{"style":222},[3842],{"type":62,"value":3578},{"type":57,"tag":97,"props":3844,"children":3845},{"class":99,"line":765},[3846,3850,3854,3858,3862,3866,3871,3875,3879],{"type":57,"tag":97,"props":3847,"children":3848},{"style":222},[3849],{"type":62,"value":3619},{"type":57,"tag":97,"props":3851,"children":3852},{"style":114},[3853],{"type":62,"value":3697},{"type":57,"tag":97,"props":3855,"children":3856},{"style":222},[3857],{"type":62,"value":672},{"type":57,"tag":97,"props":3859,"children":3860},{"style":222},[3861],{"type":62,"value":3560},{"type":57,"tag":97,"props":3863,"children":3864},{"style":222},[3865],{"type":62,"value":3710},{"type":57,"tag":97,"props":3867,"children":3868},{"style":3263},[3869],{"type":62,"value":3870},"450",{"type":57,"tag":97,"props":3872,"children":3873},{"style":222},[3874],{"type":62,"value":3720},{"type":57,"tag":97,"props":3876,"children":3877},{"style":3263},[3878],{"type":62,"value":3725},{"type":57,"tag":97,"props":3880,"children":3881},{"style":222},[3882],{"type":62,"value":3730},{"type":57,"tag":97,"props":3884,"children":3885},{"class":99,"line":774},[3886,3890,3894,3898,3902],{"type":57,"tag":97,"props":3887,"children":3888},{"style":222},[3889],{"type":62,"value":3619},{"type":57,"tag":97,"props":3891,"children":3892},{"style":114},[3893],{"type":62,"value":3742},{"type":57,"tag":97,"props":3895,"children":3896},{"style":222},[3897],{"type":62,"value":672},{"type":57,"tag":97,"props":3899,"children":3900},{"style":222},[3901],{"type":62,"value":3560},{"type":57,"tag":97,"props":3903,"children":3904},{"style":222},[3905],{"type":62,"value":3906}," {\n",{"type":57,"tag":97,"props":3908,"children":3909},{"class":99,"line":827},[3910,3915,3920,3924,3928,3932,3937,3941],{"type":57,"tag":97,"props":3911,"children":3912},{"style":222},[3913],{"type":62,"value":3914},"        \"",{"type":57,"tag":97,"props":3916,"children":3917},{"style":3263},[3918],{"type":62,"value":3919},"url",{"type":57,"tag":97,"props":3921,"children":3922},{"style":222},[3923],{"type":62,"value":672},{"type":57,"tag":97,"props":3925,"children":3926},{"style":222},[3927],{"type":62,"value":3560},{"type":57,"tag":97,"props":3929,"children":3930},{"style":222},[3931],{"type":62,"value":3565},{"type":57,"tag":97,"props":3933,"children":3934},{"style":119},[3935],{"type":62,"value":3936},"https:\u002F\u002Fapi.example.com\u002Fdata",{"type":57,"tag":97,"props":3938,"children":3939},{"style":222},[3940],{"type":62,"value":672},{"type":57,"tag":97,"props":3942,"children":3943},{"style":222},[3944],{"type":62,"value":3578},{"type":57,"tag":97,"props":3946,"children":3947},{"class":99,"line":835},[3948,3952,3957,3961,3965,3969,3974],{"type":57,"tag":97,"props":3949,"children":3950},{"style":222},[3951],{"type":62,"value":3914},{"type":57,"tag":97,"props":3953,"children":3954},{"style":3263},[3955],{"type":62,"value":3956},"method",{"type":57,"tag":97,"props":3958,"children":3959},{"style":222},[3960],{"type":62,"value":672},{"type":57,"tag":97,"props":3962,"children":3963},{"style":222},[3964],{"type":62,"value":3560},{"type":57,"tag":97,"props":3966,"children":3967},{"style":222},[3968],{"type":62,"value":3565},{"type":57,"tag":97,"props":3970,"children":3971},{"style":119},[3972],{"type":62,"value":3973},"GET",{"type":57,"tag":97,"props":3975,"children":3976},{"style":222},[3977],{"type":62,"value":682},{"type":57,"tag":97,"props":3979,"children":3980},{"class":99,"line":844},[3981],{"type":57,"tag":97,"props":3982,"children":3983},{"style":222},[3984],{"type":62,"value":3985},"      }\n",{"type":57,"tag":97,"props":3987,"children":3988},{"class":99,"line":866},[3989],{"type":57,"tag":97,"props":3990,"children":3991},{"style":222},[3992],{"type":62,"value":3993},"    }\n",{"type":57,"tag":97,"props":3995,"children":3996},{"class":99,"line":903},[3997],{"type":57,"tag":97,"props":3998,"children":3999},{"style":222},[4000],{"type":62,"value":4001},"  ],\n",{"type":57,"tag":97,"props":4003,"children":4004},{"class":99,"line":911},[4005,4009,4014,4018,4022],{"type":57,"tag":97,"props":4006,"children":4007},{"style":222},[4008],{"type":62,"value":3546},{"type":57,"tag":97,"props":4010,"children":4011},{"style":210},[4012],{"type":62,"value":4013},"connections",{"type":57,"tag":97,"props":4015,"children":4016},{"style":222},[4017],{"type":62,"value":672},{"type":57,"tag":97,"props":4019,"children":4020},{"style":222},[4021],{"type":62,"value":3560},{"type":57,"tag":97,"props":4023,"children":4024},{"style":222},[4025],{"type":62,"value":3906},{"type":57,"tag":97,"props":4027,"children":4028},{"class":99,"line":920},[4029,4034,4038,4042,4046],{"type":57,"tag":97,"props":4030,"children":4031},{"style":222},[4032],{"type":62,"value":4033},"    \"",{"type":57,"tag":97,"props":4035,"children":4036},{"style":114},[4037],{"type":62,"value":3640},{"type":57,"tag":97,"props":4039,"children":4040},{"style":222},[4041],{"type":62,"value":672},{"type":57,"tag":97,"props":4043,"children":4044},{"style":222},[4045],{"type":62,"value":3560},{"type":57,"tag":97,"props":4047,"children":4048},{"style":222},[4049],{"type":62,"value":3906},{"type":57,"tag":97,"props":4051,"children":4052},{"class":99,"line":958},[4053,4057,4062,4066,4070,4075,4079,4085,4089,4093,4097,4101,4105,4109,4113,4117,4121,4125,4129,4133,4137,4141,4145,4150,4154,4158,4163],{"type":57,"tag":97,"props":4054,"children":4055},{"style":222},[4056],{"type":62,"value":3619},{"type":57,"tag":97,"props":4058,"children":4059},{"style":3263},[4060],{"type":62,"value":4061},"main",{"type":57,"tag":97,"props":4063,"children":4064},{"style":222},[4065],{"type":62,"value":672},{"type":57,"tag":97,"props":4067,"children":4068},{"style":222},[4069],{"type":62,"value":3560},{"type":57,"tag":97,"props":4071,"children":4072},{"style":222},[4073],{"type":62,"value":4074}," [[{",{"type":57,"tag":97,"props":4076,"children":4077},{"style":222},[4078],{"type":62,"value":3565},{"type":57,"tag":97,"props":4080,"children":4082},{"style":4081},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[4083],{"type":62,"value":4084},"node",{"type":57,"tag":97,"props":4086,"children":4087},{"style":222},[4088],{"type":62,"value":672},{"type":57,"tag":97,"props":4090,"children":4091},{"style":222},[4092],{"type":62,"value":3560},{"type":57,"tag":97,"props":4094,"children":4095},{"style":222},[4096],{"type":62,"value":3565},{"type":57,"tag":97,"props":4098,"children":4099},{"style":119},[4100],{"type":62,"value":3798},{"type":57,"tag":97,"props":4102,"children":4103},{"style":222},[4104],{"type":62,"value":672},{"type":57,"tag":97,"props":4106,"children":4107},{"style":222},[4108],{"type":62,"value":3720},{"type":57,"tag":97,"props":4110,"children":4111},{"style":222},[4112],{"type":62,"value":3565},{"type":57,"tag":97,"props":4114,"children":4115},{"style":4081},[4116],{"type":62,"value":3660},{"type":57,"tag":97,"props":4118,"children":4119},{"style":222},[4120],{"type":62,"value":672},{"type":57,"tag":97,"props":4122,"children":4123},{"style":222},[4124],{"type":62,"value":3560},{"type":57,"tag":97,"props":4126,"children":4127},{"style":222},[4128],{"type":62,"value":3565},{"type":57,"tag":97,"props":4130,"children":4131},{"style":119},[4132],{"type":62,"value":4061},{"type":57,"tag":97,"props":4134,"children":4135},{"style":222},[4136],{"type":62,"value":672},{"type":57,"tag":97,"props":4138,"children":4139},{"style":222},[4140],{"type":62,"value":3720},{"type":57,"tag":97,"props":4142,"children":4143},{"style":222},[4144],{"type":62,"value":3565},{"type":57,"tag":97,"props":4146,"children":4147},{"style":4081},[4148],{"type":62,"value":4149},"index",{"type":57,"tag":97,"props":4151,"children":4152},{"style":222},[4153],{"type":62,"value":672},{"type":57,"tag":97,"props":4155,"children":4156},{"style":222},[4157],{"type":62,"value":3560},{"type":57,"tag":97,"props":4159,"children":4160},{"style":3263},[4161],{"type":62,"value":4162}," 0",{"type":57,"tag":97,"props":4164,"children":4165},{"style":222},[4166],{"type":62,"value":4167}," }]]\n",{"type":57,"tag":97,"props":4169,"children":4170},{"class":99,"line":1007},[4171],{"type":57,"tag":97,"props":4172,"children":4173},{"style":222},[4174],{"type":62,"value":3993},{"type":57,"tag":97,"props":4176,"children":4177},{"class":99,"line":1015},[4178],{"type":57,"tag":97,"props":4179,"children":4180},{"style":222},[4181],{"type":62,"value":4182},"  }\n",{"type":57,"tag":97,"props":4184,"children":4185},{"class":99,"line":1024},[4186],{"type":57,"tag":97,"props":4187,"children":4188},{"style":222},[4189],{"type":62,"value":4190},"}\n",{"type":57,"tag":65,"props":4192,"children":4193},{},[4194],{"type":62,"value":4195},"Key points:",{"type":57,"tag":4197,"props":4198,"children":4199},"ul",{},[4200,4220,4237,4267],{"type":57,"tag":4201,"props":4202,"children":4203},"li",{},[4204,4210,4212,4218],{"type":57,"tag":71,"props":4205,"children":4207},{"className":4206},[],[4208],{"type":62,"value":4209},"nodes[].type",{"type":62,"value":4211}," follows the pattern ",{"type":57,"tag":71,"props":4213,"children":4215},{"className":4214},[],[4216],{"type":62,"value":4217},"n8n-nodes-base.\u003CnodeName>",{"type":62,"value":4219}," for built-in nodes",{"type":57,"tag":4201,"props":4221,"children":4222},{},[4223,4228,4230,4235],{"type":57,"tag":71,"props":4224,"children":4226},{"className":4225},[],[4227],{"type":62,"value":4013},{"type":62,"value":4229}," is keyed by source node name, with ",{"type":57,"tag":71,"props":4231,"children":4233},{"className":4232},[],[4234],{"type":62,"value":4061},{"type":62,"value":4236}," output arrays",{"type":57,"tag":4201,"props":4238,"children":4239},{},[4240,4242,4247,4248,4253,4255,4260,4262],{"type":62,"value":4241},"Each connection specifies target ",{"type":57,"tag":71,"props":4243,"children":4245},{"className":4244},[],[4246],{"type":62,"value":4084},{"type":62,"value":381},{"type":57,"tag":71,"props":4249,"children":4251},{"className":4250},[],[4252],{"type":62,"value":3660},{"type":62,"value":4254}," (usually ",{"type":57,"tag":71,"props":4256,"children":4258},{"className":4257},[],[4259],{"type":62,"value":4061},{"type":62,"value":4261},"), and output ",{"type":57,"tag":71,"props":4263,"children":4265},{"className":4264},[],[4266],{"type":62,"value":4149},{"type":57,"tag":4201,"props":4268,"children":4269},{},[4270,4272,4278],{"type":62,"value":4271},"Use ",{"type":57,"tag":71,"props":4273,"children":4275},{"className":4274},[],[4276],{"type":62,"value":4277},"workflow get \u003Cid> --json",{"type":62,"value":4279}," to see real examples from the instance",{"type":57,"tag":4281,"props":4282,"children":4283},"style",{},[4284],{"type":62,"value":4285},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":4287,"total":720},[4288,4303,4318,4332,4344,4357,4364],{"slug":4289,"name":4289,"fn":4290,"description":4291,"org":4292,"tags":4293,"stars":23,"repoUrl":24,"updatedAt":4302},"config-evals","configure workflow evaluations","Builds and maintains configuration-based evaluations on a workflow with the eval-config tool. Use when the user asks to set up, add, view, change, or remove an evaluation, score, grade, or judge a workflow's output, or measure answer quality against a test dataset. This is the only eval form Instance AI handles — it does not touch on-canvas evaluation nodes.",{"slug":8,"name":8,"logoUrl":9,"githubOrg":10},[4294,4297,4298,4301],{"name":4295,"slug":4296,"type":13},"Evals","evals",{"name":8,"slug":8,"type":13},{"name":4299,"slug":4300,"type":13},"Testing","testing",{"name":21,"slug":22,"type":13},"2026-07-24T05:37:07.398695",{"slug":4304,"name":4304,"fn":4305,"description":4306,"org":4307,"tags":4308,"stars":23,"repoUrl":24,"updatedAt":4317},"credential-setup-with-computer-use","configure n8n credentials via browser","Guides n8n credential setup through Computer Use browser tools. Use when a user needs OAuth apps, API keys, client IDs, client secrets, or other credential values from an external service console.",{"slug":8,"name":8,"logoUrl":9,"githubOrg":10},[4309,4310,4313,4314],{"name":15,"slug":16,"type":13},{"name":4311,"slug":4312,"type":13},"Configuration","configuration",{"name":8,"slug":8,"type":13},{"name":4315,"slug":4316,"type":13},"OAuth","oauth","2026-06-30T07:40:45.54",{"slug":4319,"name":4319,"fn":4320,"description":4321,"org":4322,"tags":4323,"stars":23,"repoUrl":24,"updatedAt":4331},"data-table-manager","manage n8n Data Tables","Load before calling data-tables or parse-file. Use for natural standalone requests like \"what data tables do I have?\", \"show\u002Flist my tables\", or \"what columns are in this table?\", and whenever the user asks to list, show, create, inspect, import, seed, query, update, clean up, rename columns in, or delete data tables and rows, especially from CSV\u002FXLSX\u002FJSON attachments. Also load before building or planning workflows that create or write to Data Tables (then load workflow-builder before build-workflow).",{"slug":8,"name":8,"logoUrl":9,"githubOrg":10},[4324,4327,4330],{"name":4325,"slug":4326,"type":13},"Data Engineering","data-engineering",{"name":4328,"slug":4329,"type":13},"Database","database",{"name":8,"slug":8,"type":13},"2026-07-27T06:07:14.648144",{"slug":4333,"name":4333,"fn":4334,"description":4335,"org":4336,"tags":4337,"stars":23,"repoUrl":24,"updatedAt":4317},"debugging-executions","debug failed n8n workflow executions","Debug failed or wrong-output workflow executions using executions tools. Load when the user reports execution failures, unexpected node output, empty parameter values after a successful run, or a node showing a red or failed expression error.",{"slug":8,"name":8,"logoUrl":9,"githubOrg":10},[4338,4339,4342,4343],{"name":15,"slug":16,"type":13},{"name":4340,"slug":4341,"type":13},"Debugging","debugging",{"name":8,"slug":8,"type":13},{"name":21,"slug":22,"type":13},{"slug":4345,"name":4345,"fn":4346,"description":4347,"org":4348,"tags":4349,"stars":23,"repoUrl":24,"updatedAt":4356},"intent-recognition","classify automation requests by control flow","Classifies automation requests using two decisions: anchor (which primitive owns the top-level control flow — workflow-anchored, agent-anchored, needs-clarification, or out-of-scope) and embeds_other (whether the other primitive appears embedded inside — an agent step inside a workflow, or a workflow invoked as an agent tool). Must be used before deciding the intent of any automation request, including compound requests with multiple independent automations, mid-build extensions to an existing workflow or agent, one-off questions or reports that need external systems you cannot query directly, and requests that need clarification before an anchor can be chosen, before choosing workflow-builder, planning, or an agent-oriented design.",{"slug":8,"name":8,"logoUrl":9,"githubOrg":10},[4350,4353,4354,4355],{"name":4351,"slug":4352,"type":13},"Agents","agents",{"name":15,"slug":16,"type":13},{"name":8,"slug":8,"type":13},{"name":21,"slug":22,"type":13},"2026-07-30T05:30:06.772347",{"slug":4,"name":4,"fn":5,"description":6,"org":4358,"tags":4359,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":8,"logoUrl":9,"githubOrg":10},[4360,4361,4362,4363],{"name":15,"slug":16,"type":13},{"name":18,"slug":19,"type":13},{"name":8,"slug":8,"type":13},{"name":21,"slug":22,"type":13},{"slug":4365,"name":4365,"fn":4366,"description":4367,"org":4368,"tags":4369,"stars":23,"repoUrl":24,"updatedAt":4380},"n8n-docs-assistant","retrieve n8n documentation and guidance","Answers n8n product, setup, credential, node, hosting, API, and usage questions from current n8n docs. Load n8n-docs via load_tool before calling it (search \"n8n docs\" if not visible). Use when the user asks how to configure, set up, troubleshoot, or understand n8n behavior, especially credential setup questions opened from the credential modal.",{"slug":8,"name":8,"logoUrl":9,"githubOrg":10},[4370,4373,4374,4377],{"name":4371,"slug":4372,"type":13},"Documentation","documentation",{"name":8,"slug":8,"type":13},{"name":4375,"slug":4376,"type":13},"Reference","reference",{"name":4378,"slug":4379,"type":13},"Search","search","2026-07-27T06:07:15.692906",{"items":4382,"total":1024},[4383,4390,4397,4403,4410,4417,4424,4431,4440,4452,4462,4472],{"slug":4289,"name":4289,"fn":4290,"description":4291,"org":4384,"tags":4385,"stars":23,"repoUrl":24,"updatedAt":4302},{"slug":8,"name":8,"logoUrl":9,"githubOrg":10},[4386,4387,4388,4389],{"name":4295,"slug":4296,"type":13},{"name":8,"slug":8,"type":13},{"name":4299,"slug":4300,"type":13},{"name":21,"slug":22,"type":13},{"slug":4304,"name":4304,"fn":4305,"description":4306,"org":4391,"tags":4392,"stars":23,"repoUrl":24,"updatedAt":4317},{"slug":8,"name":8,"logoUrl":9,"githubOrg":10},[4393,4394,4395,4396],{"name":15,"slug":16,"type":13},{"name":4311,"slug":4312,"type":13},{"name":8,"slug":8,"type":13},{"name":4315,"slug":4316,"type":13},{"slug":4319,"name":4319,"fn":4320,"description":4321,"org":4398,"tags":4399,"stars":23,"repoUrl":24,"updatedAt":4331},{"slug":8,"name":8,"logoUrl":9,"githubOrg":10},[4400,4401,4402],{"name":4325,"slug":4326,"type":13},{"name":4328,"slug":4329,"type":13},{"name":8,"slug":8,"type":13},{"slug":4333,"name":4333,"fn":4334,"description":4335,"org":4404,"tags":4405,"stars":23,"repoUrl":24,"updatedAt":4317},{"slug":8,"name":8,"logoUrl":9,"githubOrg":10},[4406,4407,4408,4409],{"name":15,"slug":16,"type":13},{"name":4340,"slug":4341,"type":13},{"name":8,"slug":8,"type":13},{"name":21,"slug":22,"type":13},{"slug":4345,"name":4345,"fn":4346,"description":4347,"org":4411,"tags":4412,"stars":23,"repoUrl":24,"updatedAt":4356},{"slug":8,"name":8,"logoUrl":9,"githubOrg":10},[4413,4414,4415,4416],{"name":4351,"slug":4352,"type":13},{"name":15,"slug":16,"type":13},{"name":8,"slug":8,"type":13},{"name":21,"slug":22,"type":13},{"slug":4,"name":4,"fn":5,"description":6,"org":4418,"tags":4419,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":8,"logoUrl":9,"githubOrg":10},[4420,4421,4422,4423],{"name":15,"slug":16,"type":13},{"name":18,"slug":19,"type":13},{"name":8,"slug":8,"type":13},{"name":21,"slug":22,"type":13},{"slug":4365,"name":4365,"fn":4366,"description":4367,"org":4425,"tags":4426,"stars":23,"repoUrl":24,"updatedAt":4380},{"slug":8,"name":8,"logoUrl":9,"githubOrg":10},[4427,4428,4429,4430],{"name":4371,"slug":4372,"type":13},{"name":8,"slug":8,"type":13},{"name":4375,"slug":4376,"type":13},{"name":4378,"slug":4379,"type":13},{"slug":4432,"name":4432,"fn":4433,"description":4434,"org":4435,"tags":4436,"stars":23,"repoUrl":24,"updatedAt":4317},"planned-task-runtime","manage n8n task runtimes","Handles system follow-up turns: planned-task-follow-up (synthesize, replan, build-workflow, checkpoint), background-task-completed, running-tasks context, and create-tasks silence rules. Load whenever any of these tags appear or after calling create-tasks.",{"slug":8,"name":8,"logoUrl":9,"githubOrg":10},[4437,4438,4439],{"name":15,"slug":16,"type":13},{"name":8,"slug":8,"type":13},{"name":21,"slug":22,"type":13},{"slug":4441,"name":4441,"fn":4442,"description":4443,"org":4444,"tags":4445,"stars":23,"repoUrl":24,"updatedAt":4451},"planning","coordinate multi-artifact workflows","ONLY for coordinated multi-artifact work: multiple workflows with dependencies, shared data-table schema\u002Fmigration across tasks, or the user explicitly asked to review a plan first. Load create-tasks via load_tool before calling it (search \"create tasks\" if not visible). Do NOT use for new one-off workflows, single-workflow edits, verification-only requests, or standalone data-table ops — use workflow-builder or data-table-manager instead.",{"slug":8,"name":8,"logoUrl":9,"githubOrg":10},[4446,4447,4448,4450],{"name":15,"slug":16,"type":13},{"name":8,"slug":8,"type":13},{"name":4449,"slug":4441,"type":13},"Planning",{"name":21,"slug":22,"type":13},"2026-07-27T06:07:16.673218",{"slug":4453,"name":4453,"fn":4454,"description":4455,"org":4456,"tags":4457,"stars":23,"repoUrl":24,"updatedAt":4461},"post-build-flow","verify and set up n8n workflows","Handles workflow verification and setup after build-workflow succeeds, or when the message contains workflow-verification-follow-up or workflow-setup-required. Load after direct builds, when verificationReadiness requires action, or on orchestrator verify\u002Fsetup follow-up turns.",{"slug":8,"name":8,"logoUrl":9,"githubOrg":10},[4458,4459,4460],{"name":15,"slug":16,"type":13},{"name":8,"slug":8,"type":13},{"name":21,"slug":22,"type":13},"2026-07-24T05:37:08.421329",{"slug":4463,"name":4463,"fn":4464,"description":4465,"org":4466,"tags":4467,"stars":23,"repoUrl":24,"updatedAt":4471},"workflow-builder","build and edit n8n workflows","Load before calling build-workflow. Default path for all single-workflow work: new one-off workflows, existing-workflow edits, verification repairs, and workflow-local data tables. Write or edit a workspace source file, then call build-workflow with filePath. When the workflow creates or writes Data Tables, load data-table-manager first, then this skill. Do not load planning or create-tasks first. Load planning only when multiple coordinated workflows or shared cross-task data tables require a dependency-aware task graph.",{"slug":8,"name":8,"logoUrl":9,"githubOrg":10},[4468,4469,4470],{"name":15,"slug":16,"type":13},{"name":8,"slug":8,"type":13},{"name":21,"slug":22,"type":13},"2026-07-30T05:30:07.798011",{"slug":4473,"name":4473,"fn":4474,"description":4475,"org":4476,"tags":4477,"stars":4483,"repoUrl":4484,"updatedAt":4485},"n8n-agents-official","build AI agents in n8n","Use when building or editing any AI feature in n8n: AI Agents, Text Classifier, Information Extractor, Sentiment Analysis, Summarization Chain, Basic LLM Chain, embeddings, vector stores, single one-shot LLM calls, or AI media generation (image \u002F audio \u002F video) via the native LangChain provider nodes. Triggers on any `@n8n\u002Fn8n-nodes-langchain.*` node, \"agent\", \"chat assistant\", \"LLM with tools\", \"tool calling\", \"fromAi\", \"system prompt\", \"memory window\", \"structured output\", \"outputParser\", \"function calling\", \"RAG\", \"vector store\", \"embeddings\", \"classify with AI\", \"extract fields with LLM\", \"sentiment analysis\", \"summarize with LLM\", \"single LLM call\", chat triggers with files, AI image \u002F video \u002F audio generation, or any multi-turn or one-shot LLM behavior.",{"slug":8,"name":8,"logoUrl":9,"githubOrg":10},[4478,4479,4482],{"name":4351,"slug":4352,"type":13},{"name":4480,"slug":4481,"type":13},"LLM","llm",{"name":21,"slug":22,"type":13},319,"https:\u002F\u002Fgithub.com\u002Fn8n-io\u002Fskills","2026-07-08T05:44:47.938896"]