n8n-skills-catalog
Use to find the right n8n skill for a task, browse available skills, discover workflow patterns, or get an overview of all n8n automation capabilities
Install
mkdir -p .claude/skills/n8n-skills-catalog && curl -L -o skill.zip "https://mcp.directory/api/skills/download/280" && unzip -o skill.zip -d .claude/skills/n8n-skills-catalog && rm skill.zipInstalls to .claude/skills/n8n-skills-catalog
About this skill
n8n Skills Catalog
When to use: Need to find the right skill for a task, explore available capabilities, or get started with n8n automation.
šÆ Quick Skill Finder
I need to...
Fix n8n errors or issues
ā Use: n8n-best-practices
- Code node errors
- HTTP request failures
- Environment variable issues
- Data flow problems
Scrape websites
ā Use: anti-scraping
- Bypass Cloudflare
- JavaScript rendering
- Multi-page scraping
Integrate AI models
ā Use: ai-integration
- OpenAI, Qwen, Claude
- Structured output parsing
- Content analysis
Work with Notion
ā Use: notion-operations
- Create/update pages
- Query databases
- Sync data
Handle OAuth tokens
ā Use: oauth-automation
- Auto-refresh tokens
- YouTube/Google APIs
- Prevent expiration
Process videos
ā Use: video-processing
- Extract subtitles
- Analyze content
- Generate timestamps
š All Available Skills
š§ Core & Best Practices
n8n-best-practices ā START HERE
- ES5 syntax requirements
- HTTP request patterns
- Environment variables
- Data flow patterns
- Common pitfalls
- Debugging strategies
Location: /mnt/d/work/n8n_agent/n8n-skills/n8n-best-practices/
š Web Scraping
anti-scraping
- Cloudflare bypass
- Playwright automation
- Stealth configurations
- Screenshot debugging
pagination
- Multi-page scraping
- URL generation
- Batch processing
html-parsing
- Cheerio extraction
- CSS selectors
- Data extraction patterns
Location: /mnt/d/work/n8n_agent/n8n-skills/anti-scraping/, pagination/, html-parsing/
š¤ AI Integration
ai-integration
- Multi-provider support (OpenAI, Qwen, Claude)
- Structured output parsing
- Prompt engineering
- Schema validation
- Error handling
idea-generation
- Content clustering
- Batch processing
- Multilingual output
- Creative automation
Location: /mnt/d/work/n8n_agent/n8n-skills/ai-integration/, idea-generation/
š Data & Storage
notion-operations
- Complete CRUD operations
- All field types
- Database synchronization
- Query patterns
- Structured data design
notion-link-analysis
- URL ā AI ā Notion automation
- Content extraction
- Auto-tagging
- Knowledge management
notion-database-sync
- Sync between databases
- Deduplication
- Field mapping
- Status tracking
Location: /mnt/d/work/n8n_agent/n8n-skills/notion-operations/, notion-link-analysis/, notion-database-sync/
š Authentication
n8n-oauth-automation
- OAuth token refresh
- Real-time updates
- Scheduled refresh
- Google/YouTube APIs
- Hybrid patterns
Location: /mnt/d/work/n8n_agent/n8n-skills/n8n-oauth-automation/
š„ Media Processing
video-processing
- YouTube subtitle extraction
- VTT parsing
- Timestamp handling
- Screenshot generation
- Video metadata
Location: /mnt/d/work/n8n_agent/n8n-skills/video-processing/
š ļø Utilities
error-handling
- Retry logic
- Exponential backoff
- Error classification
data-processing
- Deduplication
- Aggregation
- Data cleaning
data-export
- CSV generation
- Special character handling
- Encoding
debugging
- Data inspection
- Validation
- Quality checks
feishu-integration
- Feishu/Lark messaging
- Notifications
- Card messages
Location: /mnt/d/work/n8n_agent/n8n-skills/error-handling/, data-processing/, data-export/, debugging/, feishu-integration/
š Common Workflow Patterns
Pattern 1: Web Scraping Pipeline
anti-scraping ā html-parsing ā data-processing ā data-export
Use for: E-commerce scraping, content collection, price monitoring
Pattern 2: AI Content Analysis
input ā ai-integration ā notion-operations
Use for: Content analysis, auto-tagging, knowledge management
Pattern 3: Video Intelligence
oauth-automation ā video-processing ā ai-integration ā notion-operations
Use for: Video indexing, show notes, content summarization
Pattern 4: Link Collection
webhook ā notion-link-analysis ā notion database
Use for: Research, content curation, inspiration collection
Pattern 5: Database Sync
schedule ā notion-database-sync ā target database
Use for: Cross-database synchronization, data migration
š Getting Started Guide
Step 1: Identify Your Need
- What are you trying to automate?
- What data sources/APIs are involved?
- What output do you need?
Step 2: Find Relevant Skills
Use the Quick Skill Finder above or browse by category.
Step 3: Read the Documentation
Each skill has detailed SKILL.md with:
- When to use it
- Quick start examples
- Complete patterns
- Troubleshooting
Step 4: Check Best Practices FIRST
Always read n8n-best-practices before implementing:
- Avoid ES6 syntax errors
- Use correct HTTP patterns
- Handle environment variables properly
Step 5: Combine Skills
Most complex workflows use multiple skills together.
š Documentation Structure
For Each Skill
Quick Reference:
.claude/skills/{skill-name}/SKILL.md- Claude Code skill- Optimized for quick lookup during development
Complete Documentation:
/mnt/d/work/n8n_agent/n8n-skills/{skill-name}/README.md- Full guide- Code files (
.js) - Copy-paste ready implementations - Examples and templates
Key Files to Read
Essential (Read First):
n8n-best-practices/README.md- Critical n8n patternsn8n-skills/README.md- Complete skill catalogSKILLS_RETRIEVAL_GUIDE.md- How to use skills effectively
Project Level:
/mnt/d/work/n8n_agent/CLAUDE.md- Repository guide/mnt/d/work/n8n_agent/n8n-skills/QUICK_START.md- Quick start guide
š How to Search for Solutions
Method 1: By Problem
"I'm getting error X" ā n8n-best-practices
"Need to scrape site Y" ā anti-scraping
"OAuth token expired" ā oauth-automation
Method 2: By Technology
YouTube ā video-processing + oauth-automation
Notion ā notion-operations
AI/LLM ā ai-integration
Cloudflare ā anti-scraping
Method 3: By Pattern
Single page ā anti-scraping + html-parsing
Multi-page ā Add pagination
With AI ā Add ai-integration
Save to Notion ā Add notion-operations
Method 4: By Keyword
# Search in skills directory
grep -r "keyword" /mnt/d/work/n8n_agent/n8n-skills/*/README.md
š” Tips for Success
Golden Rules
- Check Best Practices FIRST - Saves hours of debugging
- Use ES5 syntax only - No arrow functions, template literals
- Use
require('https')- Not$httporaxios - Export environment variables - Don't just
source - Preserve data flow - Always spread previous data
Common Mistakes to Avoid
- ā Using ES6 syntax in Code nodes
- ā Using
$httpfor HTTP requests - ā Not exporting environment variables
- ā Losing upstream data in transformations
- ā Hardcoding credentials
When Stuck
- Check
n8n-best-practices/README.md - Search relevant skill documentation
- Check error message against known issues
- Test code outside n8n first
- Simplify workflow to isolate problem
š Skills by Difficulty
ā Easy (Start Here)
- data-processing
- data-export
- debugging
- error-handling
āā Moderate
- html-parsing
- pagination
- feishu-integration
āāā Intermediate
- anti-scraping
- notion-operations
- ai-integration
āāāā Advanced
- video-processing
- oauth-automation
- notion-database-sync
āāāāā Expert
- n8n-best-practices (must know)
- Complete workflow architecture
š Related Resources
Full Skills Library:
/mnt/d/work/n8n_agent/n8n-skills/
Python Workflow Agent:
/mnt/d/work/n8n_agent/n8n-workflow-agent/
Repository Guide:
/mnt/d/work/n8n_agent/CLAUDE.md
š How to Use This Catalog
During Development:
- Problem occurs ā Search this catalog
- Find relevant skill
- Read skill's SKILL.md
- Check full README.md if needed
- Copy code and adapt
Planning New Workflow:
- List requirements
- Map to skills using Quick Finder
- Read each skill's documentation
- Design workflow combining skills
- Implement with best practices
Learning:
- Start with
n8n-best-practices - Try simple skills (data-export, debugging)
- Progress to intermediate (anti-scraping, ai-integration)
- Combine skills for complex workflows
- Contribute back improvements
Last Updated: 2025-11-03 Total Skills: 14+ Total Code Files: 43+ Lines of Documentation: 8500+
You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
rust-coding-skill
UtakataKyosui
Guides Claude in writing idiomatic, efficient, well-structured Rust code using proper data modeling, traits, impl organization, macros, and build-speed best practices.
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.