feat: Update skills for n8n-mcp unified tool API (v1.1.0)

BREAKING: Updated all skills to reflect n8n-mcp tool consolidation:

## Tool API Changes
- get_node_essentials → get_node({detail: "standard"})
- get_node_info → get_node({detail: "full"})
- get_node_documentation → get_node({mode: "docs"})
- search_node_properties → get_node({mode: "search_properties"})
- validate_node_minimal → validate_node({mode: "minimal"})
- validate_node_operation → validate_node({mode: "full"})
- get_property_dependencies → REMOVED (use get_node modes)

## New Features Documented
- Workflow activation via API (activateWorkflow/deactivateWorkflow operations)
- n8n_deploy_template - deploy templates directly to n8n
- n8n_workflow_versions - version history and rollback
- n8n_test_workflow - trigger execution
- n8n_executions - manage executions
- Smart parameters (branch, case) for IF/Switch connections
- Intent parameter for better AI responses

## Documentation Updates
- Added YouTube video introduction with thumbnail
- Added GitHub stars badge (1.2k milestone)
- Added build.sh script for dist packaging
- Fixed "5 skills" → "7 skills" inconsistency in README

## Files Updated
- n8n-mcp-tools-expert: Complete rewrite of SKILL.md, SEARCH_GUIDE.md,
  VALIDATION_GUIDE.md, WORKFLOW_GUIDE.md
- n8n-node-configuration: Updated SKILL.md, DEPENDENCIES.md
- n8n-validation-expert: Updated SKILL.md, ERROR_CATALOG.md, FALSE_POSITIVES.md
- n8n-workflow-patterns: Updated SKILL.md, README.md
- README.md, CLAUDE.md: Modernized documentation

Conceived by Romuald Członkowski - www.aiadvisors.pl/en

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Romuald Członkowski
2026-01-08 15:37:57 +01:00
parent ec350daa6e
commit d9c2872029
27 changed files with 2393 additions and 610 deletions

28
dist/README.md vendored
View File

@@ -6,7 +6,7 @@ This folder contains distribution packages for different Claude platforms.
### Complete Bundle (Recommended)
- **`n8n-mcp-skills-v1.0.0.zip`** (168 KB) - All 7 skills in one package
- **`n8n-mcp-skills-v1.1.0.zip`** (172 KB) - All 7 skills in one package
**Includes:**
- Skill #1: n8n Expression Syntax
@@ -23,18 +23,18 @@ This folder contains distribution packages for different Claude platforms.
/plugin install czlonkowski/n8n-skills
# Or install from local file
/plugin install /path/to/n8n-mcp-skills-v1.0.0.zip
/plugin install /path/to/n8n-mcp-skills-v1.1.0.zip
```
### For Claude.ai Users (Individual Skills)
Upload each skill separately via Settings → Capabilities → Skills (bottom of page):
- `n8n-expression-syntax-v1.0.0.zip` - n8n expression syntax and common patterns
- `n8n-mcp-tools-expert-v1.0.0.zip` - Expert guide for using n8n-mcp tools (recommended to install first)
- `n8n-workflow-patterns-v1.0.0.zip` - 5 proven workflow architectural patterns
- `n8n-validation-expert-v1.0.0.zip` - Validation error interpretation and fixing
- `n8n-node-configuration-v1.0.0.zip` - Operation-aware node configuration
- `n8n-expression-syntax-v1.1.0.zip` - n8n expression syntax and common patterns
- `n8n-mcp-tools-expert-v1.1.0.zip` - Expert guide for using n8n-mcp tools (recommended to install first)
- `n8n-workflow-patterns-v1.1.0.zip` - 5 proven workflow architectural patterns
- `n8n-validation-expert-v1.1.0.zip` - Validation error interpretation and fixing
- `n8n-node-configuration-v1.1.0.zip` - Operation-aware node configuration
**Installation:**
1. Go to Settings → Capabilities → Skills (bottom of page)
@@ -49,7 +49,7 @@ Upload each skill separately via Settings → Capabilities → Skills (bottom of
| Platform | Package | What You Get |
|----------|---------|--------------|
| **Claude.ai** | Individual zips | 5 core skills (upload separately) |
| **Claude Code** | Complete bundle (n8n-mcp-skills-v1.0.0.zip) | All 7 skills at once |
| **Claude Code** | Complete bundle (n8n-mcp-skills-v1.1.0.zip) | All 7 skills at once |
| **Claude API** | Complete bundle | All 7 skills (extract skills/ folder) |
**Note:** Code skills (#6 JavaScript, #7 Python) are only in the complete bundle.
@@ -60,12 +60,12 @@ Upload each skill separately via Settings → Capabilities → Skills (bottom of
```
dist/
├── n8n-mcp-skills-v1.0.0.zip (168 KB) ★ RECOMMENDED
├── n8n-expression-syntax-v1.0.0.zip (11 KB)
├── n8n-mcp-tools-expert-v1.0.0.zip (15 KB)
├── n8n-workflow-patterns-v1.0.0.zip (35 KB)
├── n8n-validation-expert-v1.0.0.zip (18 KB)
├── n8n-node-configuration-v1.0.0.zip (17 KB)
├── n8n-mcp-skills-v1.1.0.zip (168 KB) ★ RECOMMENDED
├── n8n-expression-syntax-v1.1.0.zip (11 KB)
├── n8n-mcp-tools-expert-v1.1.0.zip (15 KB)
├── n8n-workflow-patterns-v1.1.0.zip (35 KB)
├── n8n-validation-expert-v1.1.0.zip (18 KB)
├── n8n-node-configuration-v1.1.0.zip (17 KB)
└── README.md (this file)
```