n8n

Solid

n8n workflow automation patterns and API integration. This skill should be used when creating n8n workflows, using webhooks, managing workflows via REST API, or integrating n8n with MCP servers. Covers workflow JSON structure, node patterns, and automation best practices.

AI & Automation 335 stars 29 forks Updated today

Install

View on GitHub

Quality Score: 85/100

Stars 20%
84
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
0
Description 5%
100

Skill Content

# n8n Workflow Automation Skill This skill enables creating and managing n8n workflows for automation tasks. ## Prerequisites n8n instance running with API access: ```bash N8N_HOST=localhost N8N_PORT=5678 N8N_API_KEY=your-api-key ``` ## Core Concepts ### Workflow Structure Every n8n workflow is JSON with this structure: ```json { "name": "Workflow Name", "nodes": [], "connections": {}, "settings": { "executionOrder": "v1" } } ``` ### Node Structure Each node has: ```json { "id": "unique-id", "name": "Display Name", "type": "n8n-nodes-base.nodetype", "typeVersion": 1, "position": [x, y], "parameters": {}, "credentials": {} } ``` ### Connection Structure Connections define data flow between nodes: ```json { "Source Node": { "main": [ [{"node": "Target Node", "type": "main", "index": 0}] ] } } ``` ## Common Workflow Patterns ### 1. Webhook-Triggered Workflow Creates an HTTP endpoint that triggers workflow execution: ```json { "name": "Webhook Handler", "nodes": [ { "id": "webhook", "name": "Webhook", "type": "n8n-nodes-base.webhook", "typeVersion": 2, "position": [250, 300], "webhookId": "my-webhook", "parameters": { "path": "my-endpoint", "httpMethod": "POST", "responseMode": "responseNode" } }, { "id": "respond", "name": "Respond", "type": "n8n-nodes-base.respondToWebhook", "typeVersion": 1.1, "pos...

Details

Author
aiskillstore
Repository
aiskillstore/marketplace
Created
5 months ago
Last Updated
today
Language
Python
License
None

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

n8n-workflow-patterns

Proven architectural patterns for building n8n workflows.

39,350 Updated today
sickn33
AI & Automation Listed

n8n-workflow-patterns

Proven workflow architectural patterns from real n8n workflows. Use when building new workflows, designing workflow structure, choosing workflow patterns, planning workflow architecture, or asking about webhook processing, HTTP API integration, database operations, AI agent workflows, batch processing, or scheduled tasks. Always consult this skill when the user asks to create, build, or design an n8n workflow, automate a process, or connect services — even if they don't explicitly mention 'patterns'. Covers webhook, API, database, AI, batch processing, and scheduled automation architectures.

0 Updated 3 days ago
produtoramaxvision
AI & Automation Solid

n8n-workflow-patterns

Proven workflow architectural patterns from real n8n workflows. Use when building new workflows, designing workflow structure, choosing workflow patterns, planning workflow architecture, or asking about webhook processing, HTTP API integration, database operations, AI agent workflows, or scheduled tasks.

27,705 Updated today
davila7
AI & Automation Solid

n8n-workflow-generator

Generate n8n workflow generator operations. Auto-activating skill for Business Automation. Triggers on: n8n workflow generator, n8n workflow generator Part of the Business Automation skill category. Use when working with n8n workflow generator functionality. Trigger with phrases like "n8n workflow generator", "n8n generator", "n8n".

2,274 Updated today
jeremylongshore
AI & Automation Listed

n8n-workflow

Design, build, or troubleshoot n8n automation workflows. Always trigger immediately when Mick mentions n8n, workflow nodes, automating a pipeline, or connecting services via n8n. Covers node selection, webhook patterns, Claude API integration, credential setup, Cloudflare Tunnel exposure, and Proxmox LXC deployment. Mick runs n8n on Proxmox CT 104 at 192.168.0.81:5678 with Cloudflare Tunnel for HTTPS.

11 Updated 1 weeks ago
mickpletcher