设计和输出具有强大触发器、幂等性、错误处理、日志记录、重试和人工循环审核队列的 n8n 工作流 JSON。当您需要一个不会默默失败的可审核自动化时使用。
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install n8n-workflow-automation或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install n8n-workflow-automation⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/n8n-workflow-automation/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: n8n-workflow-automation description: Designs and outputs n8n workflow JSON with robust triggers, idempotency, error handling, logging, retries, and human-in-the-loop review queues. Use when you need an auditable automation that won’t silently fail. ---
Designs and outputs n8n workflow JSON with robust triggers, idempotency, error handling, logging, retries, and human-in-the-loop review queues.
- Build an n8n workflow that runs every Monday and emails the compliance summary. - Add error handling and retries to this workflow, plus a review queue for failures. - Create a webhook workflow that logs every run and writes a status row to a tracker. - Make this n8n flow idempotent so it does not duplicate records when it reruns. - Instrument this workflow with audit logs and a human approval step.
- You need code-only automation without n8n (use a scripting/CI skill). - You need to bypass security controls or hide audit trails. - You need to purchase or recommend prohibited items/services.
- Workflow intent: trigger type + schedule/timezone + success criteria. - Targets: where to write results (email/Drive/Sheet/DB) and required fields.
- Existing n8n workflow JSON to modify. - Sample payloads / example records. - Definition of dedup keys (what makes a record unique).
- Cron: Monday 08:00 Europe/London; send summary email + Drive upload - Webhook: receive JSON; route to folders
workflow.json (n8n importable JSON) + runbook.md (from template).Success = workflow is idempotent, logs every run, retries safely, and routes failures to a review queue.
- Cron/webhook/manual; schedule/timezone; concurrency expectations.
- input schema, required fields, and validation rules.
- choose dedup key(s) and storage (DB/Sheet) to prevent duplicates on retries.
- generate run_id, log start/end, store status row and error details.
- per-node error branches, retry with backoff, and final failure notification.
- write failed items to a queue (Sheet/DB) and require approval to reprocess.
- if counts/thresholds fail, stop workflow and alert.
- If asked for JSON: produce importable n8n workflow JSON + runbook.
- destination systems are unknown, - no dedup key exists, - credential strategy (env vars) is not specified, - the workflow needs privileged access not yet approved.
If outputting n8n workflow JSON, conform to:
{
"name": "<workflow name>",
"nodes": [ { "name": "Trigger", "type": "n8n-nodes-base.cron", "parameters": {}, "position": [0,0] } ],
"connections": {},
"settings": {},
"active": false
}
Also output runbook.md using assets/runbook-template.md.
Output: Node map + workflow.json with Cron → Fetch → Aggregate → Email, plus error branches to review queue.
Output: Webhook → Validate → Process → Append status row; on error → log + notify + queue.
安装 n8n 工作流程自动化 后,可以对 AI 说这些话来触发它
Help me get started with n8n workflow automation
Explains what n8n workflow automation does, walks through the setup, and runs a quick demo based on your current project
Use n8n workflow automation to designs and outputs n8n workflow JSON with robust triggers, idempot...
Invokes n8n workflow automation with the right parameters and returns the result directly in the conversation
What can I do with n8n workflow automation in my ai agent & automation workflow?
Lists the top use cases for n8n workflow automation, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/n8n-workflow-automation/ 目录(个人级,所有项目可用),或 .claude/skills/n8n-workflow-automation/(项目级)。重启 AI 客户端后,用 /n8n-workflow-automation 主动调用,或让 AI 根据上下文自动发现并使用。
n8n 工作流程自动化 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
n8n 工作流程自动化 可免费安装使用。请查阅仓库了解许可证信息。
设计和输出具有强大触发器、幂等性、错误处理、日志记录、重试和人工循环审核队列的 n8n 工作流 JSON。当您需要一个不会默默失败的可审核自动化时使用。
n8n 工作流程自动化 属于「AI Agent & Automation」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my ai agent & automation tasks using n8n workflow automation
Identifies repetitive steps in your workflow and sets up n8n workflow automation to handle them automatically