Install
openclaw skills install n8n-workflow-automation-local-backupDesigns 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.
openclaw skills install n8n-workflow-automation-local-backupDesigns and outputs n8n workflow JSON with robust triggers, idempotency, error handling, logging, retries, and human-in-the-loop review queues.
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.run_id, log start/end, store status row and error details.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.
Input: “Cron every Monday, email compliance summary, retry failures.”
Output: Node map + workflow.json with Cron → Fetch → Aggregate → Email, plus error branches to review queue.
Input: “Webhook that logs runs and writes status row.”
Output: Webhook → Validate → Process → Append status row; on error → log + notify + queue.