n8n-impl-workflow-design
Installation
SKILL.md
n8n Workflow Design Patterns
Quick Reference
| Pattern | Primary Node | When to Use |
|---|---|---|
| Sub-workflow | Execute Workflow | Reusable logic, separation of concerns, >20 nodes |
| Error handling | Error Trigger + Stop And Error | Centralized failure notification and recovery |
| Branching | IF / Switch | Conditional routing based on data values |
| Merging | Merge | Combining data from parallel branches |
| Looping | Loop Over Items | Batch processing, rate-limited API calls |
| Wait/Resume | Wait | Human approval, external callback, timed delay |
| Scheduling | Schedule Trigger | Recurring automated execution |
Decision Tree: Which Pattern Do I Need?
Need to reuse logic across workflows?
├─ YES → Sub-workflow (Execute Workflow node)
Related skills