Files
n8n-skills/.claude-plugin/plugin.json
czlonkowski 15285fb390 fix: Change repository field from object to string in plugin.json
Claude Code expects repository field to be a string, not an object.

Error: repository: Expected string, received object

Changed from:
"repository": { "type": "git", "url": "..." }

To:
"repository": "https://github.com/czlonkowski/n8n-skills"

This follows Claude Code's plugin.json schema where repository is a simple
string URL rather than npm's package.json format.

Distribution package regenerated with corrected plugin.json.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
Conceived by Romuald Członkowski - https://www.aiadvisors.pl/en
2025-10-20 13:28:05 +02:00

21 lines
477 B
JSON

{
"name": "n8n-mcp-skills",
"version": "1.0.0",
"description": "Expert skills for building n8n workflows with n8n-mcp",
"author": {
"name": "Romuald Członkowski",
"url": "https://www.aiadvisors.pl/en"
},
"license": "MIT",
"keywords": [
"n8n",
"workflow",
"automation",
"mcp",
"validation",
"expressions"
],
"repository": "https://github.com/czlonkowski/n8n-skills",
"homepage": "https://github.com/czlonkowski/n8n-skills"
}