n8n

Guide n8n workflow authors through building, validating, and debugging automations.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/edupazogle/agentic_cockpit --skill n8n-edupazogle
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: n8n
Source: https://github.com/edupazogle/agentic_cockpit/tree/main/.agents/skills/n8n
Command: npx skills add https://github.com/edupazogle/agentic_cockpit --skill n8n-edupazogle

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps you reliably build, edit, validate, and troubleshoot n8n workflows without guessing node parameters or deploying broken configurations.

Core Features & Use Cases

  • Workflow-ready n8n guidance: Covers common stages like designing workflow patterns, configuring nodes, and validating before deployment.
  • Safety guardrails: Enforces validation-first behavior and prevents common mistakes such as hard-coding node parameter names.
  • Targeted sub-skill routing: Quickly directs you to the right specialized skill for Code nodes, expressions, MCP tool wiring, node configuration, validation, and workflow patterns.
  • Integration triggers: Supports workflows that involve Code nodes, MCP tools, and automation patterns.

Quick Start

Ask for help to build an n8n webhook workflow that calls an API, transforms the payload, validates the workflow, and then prepares it for production deployment.

Frequently Asked Questions about n8n

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I validate n8n workflow configurations before deploying?

To validate n8n workflow configurations before deploying, use a validation-first approach that runs validate_workflow and validate_node checks. This prevents runtime failures by verifying exact node parameters and dependencies before activation.

What is the best way to build n8n retry and error branch patterns?

The best way to build n8n retry and error branch patterns is to route workflow design tasks through specialized sub-skills. This guides you in structuring sub-workflows and batch loops correctly without guessing node parameters.

How do I configure n8n Code nodes and expression syntax correctly?

To configure n8n Code nodes and expression syntax correctly, use strict discovery-first behavior with get_node to retrieve exact parameter names. This avoids hard-coding errors and ensures accurate node operations.

Can I use MCP tools within my n8n automation workflows?

Yes, you can use MCP tools within n8n automation workflows by routing to the appropriate sub-skill for MCP tool wiring. This ensures correct integration and configuration alongside other workflow nodes.

Why does my n8n workflow fail after activation with hard-coded parameters?

Your n8n workflow fails after activation because hard-coding node parameter names bypasses validation checks. Using discovery-first behavior to fetch exact names prevents these runtime failures during deployment.