n8n-workflow-designer

Design complex n8n workflows with AI assistance - loops, branching, error handling

View on GitHub
Author Claude Code Plugin Hub
Namespace @jeremylongshore/claude-code-plugins-plus
Category ai-agency
Version 1.0.0
Stars 1,193
Downloads 66
self.md verified
Table of content

Design complex n8n workflows with AI assistance - loops, branching, error handling

Installation

npx claude-plugins install @jeremylongshore/claude-code-plugins-plus/n8n-workflow-designer

Contents

Folders: agents, commands, skills

Files: LICENSE, README.md

Documentation

Design complex n8n workflows with AI assistance - the most powerful open-source automation platform.

Why n8n?

n8n is the most powerful open-source automation platform available:

Installation

/plugin marketplace add jeremylongshore/claude-code-plugins
/plugin install n8n-workflow-designer

⚠️ Rate Limits & Resource Constraints

n8n is self-hosted - constraints are hardware-based (CPU/RAM), not API rate limits like cloud automation platforms.

Quick Comparison

PlatformPaid (Zapier/Make)FREE (n8n Self-Hosted)
Monthly Cost$29-1,899/mo$0/mo (hardware only)
Execution Limit750-1M executions∞ Unlimited
Workflows5-50 workflows∞ Unlimited
RegistrationEmail + paymentNone (self-hosted)
Data PrivacyCloud (3rd party)Your infrastructure

Annual Savings: $348-22,788 using self-hosted n8n instead of cloud automation platforms.


Self-Hosted: Hardware-Based “Rate Limits”

Unlike Zapier/Make cloud APIs, n8n’s constraints are resource-based when self-hosted:

1. Hardware Requirements by Workload

WorkloadvCPURAMDiskConcurrent WorkflowsNotes
Light (1-10 workflows)12GB10GB5-10Basic automation
Medium (10-50 workflows)24GB20GB20-30Small agency
Heavy (50-200 workflows)48GB50GB50-100Production use
Enterprise (200+ workflows)8+16GB+100GB+100+High-volume ops

Multi-Agent Scenario: 5 Agents on One n8n Instance

# Docker Compose - Shared n8n instance for 5 agents
version: '3.8'
services:
  n8n:
    image: n8nio/n8n:latest
    container_name: shared-n8n-instance
    ports:
      - "5678:5678"
    environment:
      - N8N_BASIC_AUTH_ACTIVE=true
      - N8N_BASIC_AUTH_USER=admin
      - N8N_BASIC_AUTH_PASSWORD=secure_password
      - N8N_WEBHOOK_URL=http://your-domain.com
      - EXECUTIONS_MODE=queue  # Critical for multi-agent
      - QUEUE_BULL_REDIS_HOST=redis
      - QUEUE_RECOVERY_INTERVAL=60
    volumes:
      - ~/.n8n:/home/node/.n8n
    restart: unless-stopped
    deploy:
      resources:
        limits:
          cpus: '4'
          memory: 8G
        reservations:
          cpus: '2'
          memory: 4G

  redis:
    image: redis:alpine
    container_name: n8n-redis-queue
    volumes:
      - redis_data:/data
    restart: unless-stopped

volumes:
  redis_data:

Result: 5 agents share one n8n instance with queue management (4 vCPU, 8GB RAM)


2. Execution Throughput “Limits”

HardwareExecutions/SecondExecutions/HourExecutions/MonthNotes
1 vCPU, 2GB RAM1-33,600-10,8002.6M-7.8MLight workflows
2 vCPU, 4GB RAM5-1018K-36K13M-26MMedium workflows
4 vCPU, 8GB RAM15-3054K-108K38M-77MHeavy workflows
8 vCPU, 16GB RAM50-100180K-360K129M-259MEnterprise scale

Workflow Complexity Impact:


3. Storage Requirements

Data TypeSize Per Item1K Executions100K ExecutionsCleanup Strategy
Execution logs5-50 KB5-50 MB500MB-5GBAuto-prune >30 days
Workflow JSON10-100 KB10-100 MB1-10 GBVersion control
Binary dataVariableVariableVariableS3/object storage
DatabaseSQLite/Postgres50-100 MB5-10 GBRegular vacuum

Disk Space Planning:

# Minimal (10 workflows, 30-day retention)
Disk: 10 GB

# Medium (50 workflows, 90-day retention)
Disk: 50 GB

# Enterprise (200+ workflows, 1-year retention)
Disk: 200 GB + object storage for binary data

n8n Cloud vs Self-Hosted Constraints

n8n Cloud (Paid SaaS)

Rate Limits:

PlanMonthly ExecutionsWorkflowsSupportCost
Free5,0005Community$0
Starter20,00020Email$20/mo
Pro200,000UnlimitedPriority$50/mo
**Enterpri

…(truncated)

Source

View on GitHub

Tags: ai-agency n8nworkflowautomationself-hostedopen-sourceai-agency