Designed specifically for AI assistants, the n8n Workflow Automation Skills Suite.
400
stars
79
commits
TypeScript
primary language
Sep 13, 2026
updated
Supported n8n version: v2.38.7
n8n Skills is an automation skill pack that enables AI assistants to directly understand and operate n8n workflows, covering comprehensive information on 545 nodes and 20 curated templates. Through n8n Skills, AI assistants can help you quickly design workflows and explore node functionalities, making workflow automation more intuitive, intelligent, and saving significant development time.
n8n Skills provides a complete n8n Skill Pack solution for AI assistant workflow integration:
With n8n Skills, you can:
n8n Skills is designed for the following users:
AI Assistant Developers
n8n Workflow Users
Automation Enthusiasts
This package provides AI assistants with the ability to access n8n node information, helping AI understand and operate n8n workflows.
This project is built upon the n8n-mcp architecture, converted into an n8n Skill Pack generator with added priority ranking, node grouping, and documentation integration features. n8n Skills adopts a five-layer modular architecture (collectors, parsers, organizers, generators, build scripts), automatically collecting information from n8n NPM packages, APIs, and documentation, and generating skill packs best suited for AI assistants through intelligent ranking.
This project generates the n8n Skills automation skill pack, allowing you to use comprehensive n8n workflow knowledge in Claude Code, Claude.ai, or Claude Desktop.
n8n-skills-{version}.zip filen8n-skills/
├── SKILL.md # Main skill file
└── resources/ # Detailed node documentation
├── input/ # Input category nodes
├── output/ # Output category nodes
├── transform/ # Transform category nodes
├── trigger/ # Trigger category nodes
├── organization/ # Organization category nodes
├── misc/ # Miscellaneous nodes
├── community/ # Community package nodes
└── templates/ # Workflow templates
Choose the n8n Skills installation method according to the Claude platform you are using:
Suitable for developers using Claude Code in the terminal, loading n8n Skills through local skills directory.
Create a .claude/skills/ directory in your project root:
mkdir -p .claude/skills/n8n-skills
Copy the extracted SKILL.md and resources/ directory to that directory:
cp -r n8n-skills/* .claude/skills/n8n-skills/
The directory structure should look like this:
your-project/
└── .claude/
└── skills/
└── n8n-skills/
├── SKILL.md
└── resources/
Verify installation: Ask Claude Code "List available n8n nodes". If the Skill is correctly invoked, the installation is successful.
Suitable for general users in browsers.
n8n-skills-{version}.zip file to uploadSuitable for users of the Claude Desktop application.
n8n-skills-{version}.zip file to uploadAfter installation, you can use it like this:
Query specific node information:
"What are the main features of the HTTP Request node?"
"How to send email using the Gmail node?"
"What programming languages does the Code node support?"
Explore workflow patterns:
"How to create a scheduled workflow?"
"What are the common node combinations for data transformation?"
"How to handle API errors and retries?"
Search for specific functionality:
"Which nodes can connect to Google Sheets?"
"What AI-related nodes are available?"
"What trigger nodes are available?"
Here are real-world scenarios using n8n Skills:
Case 1: AI-Assisted Workflow Design
Scenario: You want to create a workflow that "automatically sends daily operational reports."
Before n8n Skills: You need to manually search n8n documentation, research each node's functionality, and repeatedly trial-and-error to find the correct node combination.
After n8n Skills: Simply ask the AI assistant "How to create a scheduled email report workflow?", and the AI will recommend based on n8n Skills knowledge:
Time Saved: From hours of research reduced to minutes of design.
Case 2: Exploring the Best Node Combinations
Scenario: You want to integrate Slack notifications into your existing workflow but aren't sure which nodes are available.
With n8n Skills: Ask "Which nodes can send Slack messages?", and the AI will tell you:
Along with explaining the pros and cons of each node, suitable scenarios, and configuration methods.
Benefit: Quickly find the most suitable solution for your needs, avoiding detours.
Case 3: Learning Workflow Best Practices
Scenario: Beginners want to learn how to handle API errors and retry mechanisms.
With n8n Skills: Ask "How to handle HTTP Request errors and retries?", and the AI will reference 20 curated templates and 542 nodes of knowledge to share:
Accelerated Learning: From zero foundation to mastering best practices, systematically improving skills.
Skill won't load?
SKILL.md file is in the correct locationresources/ directory structure is completeFile structure errors
SKILL.md and resources/ are in the same directory levelresources/ directoryVersion compatibility
How to update to a new version
npm install
# Build project
npm run build
# Development mode
npm run dev
# Run tests
npm test
# Type checking
npm run typecheck
Maintainer
Version Information
Project Statistics
Technical Features
This project was built using the following resources:
Thanks to all contributors and the open source community for their support.
We welcome your participation and feedback!
Issue Reporting and Feature Suggestions
Contributing
Stay Connected
Technical Support
This project is licensed under the MIT License, but includes the following third-party resources:
For detailed license information, please refer to ATTRIBUTIONS.md and LICENSE.
MIT License - See LICENSE for details.
All trademarks and copyrights belong to their respective owners.
Ready to let AI assistants help you design n8n workflows?
Download Now
Visit GitHub Releases to download the latest version of n8n Skills and start experiencing AI-assisted workflow design!
Join the Community
Contribute Your Ideas
n8n Skills is an open source project, and we welcome all forms of contribution:
Visit GitHub now and start your n8n automation skills journey!
TypeScript
73.7%
HTML
22.2%
CSS
3.3%
Designed specifically for AI assistants, the n8n Workflow Automation Skills Suite.
400
stars
79
commits
TypeScript
primary language
Sep 13, 2026
updated
Supported n8n version: v2.38.7
n8n Skills is an automation skill pack that enables AI assistants to directly understand and operate n8n workflows, covering comprehensive information on 545 nodes and 20 curated templates. Through n8n Skills, AI assistants can help you quickly design workflows and explore node functionalities, making workflow automation more intuitive, intelligent, and saving significant development time.
n8n Skills provides a complete n8n Skill Pack solution for AI assistant workflow integration:
With n8n Skills, you can:
n8n Skills is designed for the following users:
AI Assistant Developers
n8n Workflow Users
Automation Enthusiasts
This package provides AI assistants with the ability to access n8n node information, helping AI understand and operate n8n workflows.
This project is built upon the n8n-mcp architecture, converted into an n8n Skill Pack generator with added priority ranking, node grouping, and documentation integration features. n8n Skills adopts a five-layer modular architecture (collectors, parsers, organizers, generators, build scripts), automatically collecting information from n8n NPM packages, APIs, and documentation, and generating skill packs best suited for AI assistants through intelligent ranking.
This project generates the n8n Skills automation skill pack, allowing you to use comprehensive n8n workflow knowledge in Claude Code, Claude.ai, or Claude Desktop.
n8n-skills-{version}.zip filen8n-skills/
├── SKILL.md # Main skill file
└── resources/ # Detailed node documentation
├── input/ # Input category nodes
├── output/ # Output category nodes
├── transform/ # Transform category nodes
├── trigger/ # Trigger category nodes
├── organization/ # Organization category nodes
├── misc/ # Miscellaneous nodes
├── community/ # Community package nodes
└── templates/ # Workflow templates
Choose the n8n Skills installation method according to the Claude platform you are using:
Suitable for developers using Claude Code in the terminal, loading n8n Skills through local skills directory.
Create a .claude/skills/ directory in your project root:
mkdir -p .claude/skills/n8n-skills
Copy the extracted SKILL.md and resources/ directory to that directory:
cp -r n8n-skills/* .claude/skills/n8n-skills/
The directory structure should look like this:
your-project/
└── .claude/
└── skills/
└── n8n-skills/
├── SKILL.md
└── resources/
Verify installation: Ask Claude Code "List available n8n nodes". If the Skill is correctly invoked, the installation is successful.
Suitable for general users in browsers.
n8n-skills-{version}.zip file to uploadSuitable for users of the Claude Desktop application.
n8n-skills-{version}.zip file to uploadAfter installation, you can use it like this:
Query specific node information:
"What are the main features of the HTTP Request node?"
"How to send email using the Gmail node?"
"What programming languages does the Code node support?"
Explore workflow patterns:
"How to create a scheduled workflow?"
"What are the common node combinations for data transformation?"
"How to handle API errors and retries?"
Search for specific functionality:
"Which nodes can connect to Google Sheets?"
"What AI-related nodes are available?"
"What trigger nodes are available?"
Here are real-world scenarios using n8n Skills:
Case 1: AI-Assisted Workflow Design
Scenario: You want to create a workflow that "automatically sends daily operational reports."
Before n8n Skills: You need to manually search n8n documentation, research each node's functionality, and repeatedly trial-and-error to find the correct node combination.
After n8n Skills: Simply ask the AI assistant "How to create a scheduled email report workflow?", and the AI will recommend based on n8n Skills knowledge:
Time Saved: From hours of research reduced to minutes of design.
Case 2: Exploring the Best Node Combinations
Scenario: You want to integrate Slack notifications into your existing workflow but aren't sure which nodes are available.
With n8n Skills: Ask "Which nodes can send Slack messages?", and the AI will tell you:
Along with explaining the pros and cons of each node, suitable scenarios, and configuration methods.
Benefit: Quickly find the most suitable solution for your needs, avoiding detours.
Case 3: Learning Workflow Best Practices
Scenario: Beginners want to learn how to handle API errors and retry mechanisms.
With n8n Skills: Ask "How to handle HTTP Request errors and retries?", and the AI will reference 20 curated templates and 542 nodes of knowledge to share:
Accelerated Learning: From zero foundation to mastering best practices, systematically improving skills.
Skill won't load?
SKILL.md file is in the correct locationresources/ directory structure is completeFile structure errors
SKILL.md and resources/ are in the same directory levelresources/ directoryVersion compatibility
How to update to a new version
npm install
# Build project
npm run build
# Development mode
npm run dev
# Run tests
npm test
# Type checking
npm run typecheck
Maintainer
Version Information
Project Statistics
Technical Features
This project was built using the following resources:
Thanks to all contributors and the open source community for their support.
We welcome your participation and feedback!
Issue Reporting and Feature Suggestions
Contributing
Stay Connected
Technical Support
This project is licensed under the MIT License, but includes the following third-party resources:
For detailed license information, please refer to ATTRIBUTIONS.md and LICENSE.
MIT License - See LICENSE for details.
All trademarks and copyrights belong to their respective owners.
Ready to let AI assistants help you design n8n workflows?
Download Now
Visit GitHub Releases to download the latest version of n8n Skills and start experiencing AI-assisted workflow design!
Join the Community
Contribute Your Ideas
n8n Skills is an open source project, and we welcome all forms of contribution:
Visit GitHub now and start your n8n automation skills journey!
TypeScript
73.7%
HTML
22.2%
CSS
3.3%