name: n8n-builder description: Expert n8n workflow builder that creates, deploys, and manages n8n workflows programmatically via the n8n REST API. Use when asked to create n8n workflows, automate n8n tasks, build automations, design workflow pipelines, connect services via n8n, or manage existing n8n workflows. Handles webhook flows, scheduled tasks, AI agents, database syncs, conditional logic, error handling, and any n8n node configuration.
Requires two environment variables:
- N8N_URL — n8n instance URL (e.g. https://your-n8n.example.com)
- N8N_API_KEY — n8n API key (Settings → API → Create API Key)
Understand the automation — Clarify trigger (webhook/schedule/manual), data sources, processing logic, outputs, and error handling needs.
Design the workflow JSON — Build valid n8n workflow JSON following the schema in references/workflow-schema.md. Use patterns from references/workflow-patterns.md as templates.
Deploy via API — Use scripts/n8n-api.sh create <file> or pipe JSON to scripts/n8n-api.sh create-stdin.
Activate — Use scripts/n8n-api.sh activate <workflow_id> for trigger-based workflows.
小葱技能7w4.net有更新,你可以访问看下。
Verify — List workflows to confirm deployment: scripts/n8n-api.sh list.
# List all workflows
scripts/n8n-api.sh list
# Create workflow from JSON file
scripts/n8n-api.sh create /tmp/workflow.json
# Create from stdin
echo '{"name":"Test",...}' | scripts/n8n-api.sh create-stdin
# Get, activate, deactivate, delete, execute
scripts/n8n-api.sh get <id>
scripts/n8n-api.sh activate <id>
scripts/n8n-api.sh deactivate <id>
scripts/n8n-api.sh delete <id>
scripts/n8n-api.sh execute <id>
# List credentials and tags
scripts/n8n-api.sh credentials
scripts/n8n-api.sh tags
Every workflow needs: name, nodes[], connections{}, settings{}.
Every node needs: id, name, type, typeVersion, position, parameters.
Connections use source node display name as key, mapping outputs to target nodes.
For full schema, node types, and expression syntax → read references/workflow-schema.md
For complete workflow examples (webhook, schedule, AI agent, DB sync, error handling) → read references/workflow-patterns.md
"executionOrder": "v1" in settingswebhook1, code1[250, 300], spacing ~200px horizontallyrespondToWebhook node if responseMode is responseNodescripts/n8n-api.sh credentialsscripts/n8n-api.sh execute <id> for manual trigger workflowscontinueOnFail: true on risky HTTP/API nodes, then check for errors downstream这个 Skill 质量较好,文档结构清晰、参考资料丰富,提供了完整的工作流构建指南和实用的 API 工具。节点类型覆盖全面,常见场景示例实用。不足之处是部分示例文档不完整,缺少复杂功能的详细指导,对于进阶用户可能不够用。总体来说,这是一个可靠实用的 n8n 自动化工具,适合需要通过 API 管理工作流的开发者使用。