Documentation Index
Fetch the complete documentation index at: https://mintlify.com/czlonkowski/n8n-skills/llms.txt
Use this file to discover all available pages before exploring further.
How Composition Works
Skills are designed to be complementary, not exclusive. Each skill covers a distinct domain of expertise, and when your query spans multiple domains, several skills activate and contribute their knowledge in the same response. You never need to manually switch between skills or chain requests. A single comprehensive query is enough — the runtime evaluates all skill descriptions in parallel and injects every matching skill’s guidance.The most reliable way to trigger multi-skill responses is to ask comprehensive, specific questions that naturally touch on workflow structure, node searching, configuration, data mapping, and validation all at once.
Flagship Example: Full Workflow Build
The most powerful demonstration of cross-skill composition is building a complete, validated workflow in one query. Your query:Workflow Patterns identifies structure
The n8n Workflow Patterns skill activates because the query mentions “webhook” and “workflow”.It identifies this as a Webhook Processing Pattern and provides the workflow structure:It also applies the Workflow Creation Checklist:
- Identify the pattern
- List required nodes
- Plan error handling
MCP Tools Expert searches for nodes
The n8n MCP Tools Expert skill activates because the query implies finding and configuring nodes.It calls the appropriate search tools:It also clarifies the critical format difference:
nodes-base.slack— for search and validate toolsn8n-nodes-base.slack— for workflow node type in JSON
Node Configuration guides setup
The n8n Node Configuration skill activates on “configure” and “setup”.It provides operation-specific guidance for both nodes:Webhook node:Slack node:
Expression Syntax maps data
The n8n Expression Syntax skill activates on “data mapping” and the implicit need for
{{}} expressions.It provides the correct expression for accessing webhook data in the Slack node:More Composition Examples
Example 1: Build an AI Agent Workflow
Query:Workflow Patterns
Identifies the AI Agent Workflow Pattern:
Node Configuration
Explains the 8 AI connection types and the critical rule:Tools must connect via the
ai_tool port, not the main port.MCP Tools Expert
Searches for all required nodes:
Validation Expert
Validates the AI agent connections and confirms:
- Language model connected correctly
- Tools connected via
ai_toolport - Memory configured with session key
Example 2: Fix an Expression Error in a Webhook Workflow
Query:| Skill | Contribution |
|---|---|
| n8n Expression Syntax | Identifies the root cause: webhook data is under .body, not at root level |
| n8n Workflow Patterns | Provides context about webhook data structure and the common gotcha |
Example 3: Create a Scheduled Database Sync
Query:Workflow Patterns + Database Operations
Identifies this as a Scheduled Task pattern combined with Database Operations.Provides the node structure:
Node Configuration
Guides the Postgres node setup with parameterized queries:Also warns about the SQL injection risk of string concatenation.
Tips for Triggering Multi-Skill Responses
Use Comprehensive Queries
Single-domain queries activate one skill. Multi-domain queries activate several.One skill: “How do I write n8n expressions?”Multiple skills: “Build and validate a webhook workflow with correct data mapping expressions”
Name the Goal, Not the Tool
Describe what you want to accomplish rather than which skill to use. The runtime matches skills to your goal automatically.Less effective: “Use the Validation Expert to check my workflow”More effective: “Build a workflow and make sure it’s valid before I deploy”
Include End-to-End Requirements
Mention all phases of the workflow lifecycle in one query to activate the full skill chain:
Reference Related Concepts
Use terms from multiple skill domains naturally:
- “webhook” → Patterns + Expression Syntax
- “validate” → Validation Expert
- “expressions” → Expression Syntax
- “configure” → Node Configuration
- “search nodes” → MCP Tools Expert
Skill Integration Map
This diagram shows how skills collaborate in typical workflows:Getting Help
- Issues: github.com/czlonkowski/n8n-skills/issues
- Discussions: github.com/czlonkowski/n8n-skills/discussions