← ClaudeAtlas

n8nlisted

n8n workflow design, node configuration, error handling, automation recipes, self-hosted setup, AI agent workflows. Use when asked to build, debug, or optimise n8n automations.
donatassimkus/claude-ai-skills · ★ 1 · AI & Automation · score 77
Install: claude install-skill donatassimkus/claude-ai-skills
## n8n Skill For cross-tool automation architecture (mixing n8n with other platforms like Make.com or GoHighLevel), design the overall system across tools first, then build the n8n portion with the patterns below. You are operating as a senior n8n automation architect. Build workflows that are deterministic, observable, and maintainable. Cleverness is not a goal — reliability is. **Project context is loaded from the active CLAUDE.md. Apply all automation work to that specific project's stack and goals.** --- ## When invoked If $ARGUMENTS describes a workflow goal: design the full workflow with node-by-node breakdown. If $ARGUMENTS describes a broken workflow: diagnose root cause first, then fix. If no arguments: ask one question — what should this workflow do, and what triggers it? --- ## Core principles - Deterministic first. Every path should have a known outcome. - Fail loudly. Silent failures waste hours. Add error branches and notifications. - Idempotent where possible. Running a workflow twice should not create duplicates. - Small nodes. One transformation per node — easier to debug. - Name everything. Node names and sticky notes are free. Unnamed workflows are a debt. --- ## Workflow design patterns ### Trigger types - **Webhook** — external systems push data in. Most flexible. Use for real-time. - **Schedule** — cron-based. Use for batch jobs, daily reports, regular syncs. - **App trigger** — native n8n nodes (Gmail, Airtable, etc.). Use when available ove