GitHunt
CH

Chol369/n8n-skills-pro

Comprehensive, actively maintained n8n skills for AI assistants. 10 specialized skills, community fixes, and weekly updates synced with n8n releases.

n8n-skills-pro

The most comprehensive, actively maintained n8n skills for AI assistants.

License: MIT
n8n
Claude Code
Updates
GitHub Workflow Status
Last Commit
Repo Size
Issues
Stars


Why n8n-skills-pro?

Existing n8n skills projects have great content but suffer from:

  • Infrequent updates - n8n releases almost daily, skills fall behind
  • Outdated information - "Python has no external libraries" is no longer true
  • Scattered knowledge - Best practices spread across multiple repos
  • Missing community fixes - Workarounds discovered but not documented

n8n-skills-pro solves this by consolidating the best skills, adding community fixes, and maintaining monthly updates synced with n8n releases.


Features

9 Specialized Skills

# Skill Purpose
01 workflow-architect Strategic planning, n8n vs Python decisions
02 workflow-patterns 5+ proven architectural patterns
03 node-configuration 545+ nodes, operation-aware setup
04 mcp-tools-expert Master n8n-mcp MCP server tools
05 code-javascript JS patterns, $helpers, DateTime
06 code-python Python WITH external libraries
07 expression-syntax Expression debugging mastery
08 validation-expert Error interpretation & fixes
09 community-nodes Community packages, security, custom nodes

Community Fixes

Real-world solutions not found in official docs:

  • Python External Libraries - Use pandas, numpy, requests in Code nodes
  • Self-hosted Tips - AWS, Docker-specific guides

Automated Updates

  • Monthly sync with n8n npm releases
  • Automated changelog generation
  • Breaking change detection
  • New node documentation

Quick Start

Installation

# Clone the repository
git clone https://github.com/Chol369/n8n-skills-pro.git

# Copy skills to Claude Code
cp -r n8n-skills-pro/.claude ~/.claude/

Verify Installation

Ask Claude Code:

"What n8n workflow pattern should I use for a Stripe webhook?"

If Claude responds with detailed webhook processing patterns, the skills are loaded.


Directory Structure

n8n-skills-pro/
├── .claude/
│   └── skills/
│       ├── 01-workflow-architect/
│       ├── 02-workflow-patterns/
│       ├── 03-node-configuration/
│       ├── 04-mcp-tools-expert/
│       ├── 05-code-javascript/
│       ├── 06-code-python/
│       ├── 07-expression-syntax/
│       ├── 08-validation-expert/
│       └── 09-community-nodes/
├── templates/           # Production-ready workflow JSONs
├── changelog/           # n8n version tracking
├── community-fixes/     # Workarounds & solutions
├── scripts/            # Automation scripts
└── docs/               # Additional documentation

Unique Content

Python External Libraries

Unlike other skills that say "Python has no external libraries", we document the working solution:

# Enable in docker-compose.yml
n8n-runner:
  image: n8nio/runners:latest
  environment:
    - N8N_RUNNERS_EXTERNAL_ALLOW=*

Now use pandas, numpy, requests:

import pandas as pd
import requests

data = requests.get('https://api.example.com/data').json()
df = pd.DataFrame(data)
df['processed'] = df['value'] * 2

return [{'json': row} for row in df.to_dict('records')]

See community-fixes/python-external-libs for complete setup.


Comparison with Other Projects

Feature czlonkowski haunchen promptadvisers n8n-skills-pro
Skills Count 7 1 8 9
Update Frequency Sporadic Sporadic Sporadic Monthly
Python External Libs No No No Yes
Community Fixes No No No Yes
Security Guidance No No No Yes
Automated Updates No No No Yes
Self-hosted Guides Limited Limited Limited Comprehensive

Contributing

We welcome contributions! See CONTRIBUTING.md for guidelines.

Ways to Contribute

  • Report a fix - Share workarounds you've discovered
  • Add templates - Production workflow examples
  • Update docs - Keep skills current with n8n releases
  • Improve skills - Enhance existing skill content

Acknowledgments

This project consolidates and builds upon:


License

MIT License - See LICENSE


Author

Atak Chol (@Chol369)

Building AI + n8n automation solutions for businesses.


Star History

If this project helps you, please star it!


Maintained with monthly updates synced to n8n releases