From 77d8f6c68c99fb92edc65786dbdefc7598f7fa8b Mon Sep 17 00:00:00 2001 From: root Date: Tue, 10 Feb 2026 19:49:53 +0000 Subject: [PATCH] Fix marketplace.json: add owner field, fix source paths --- .claude-plugin/marketplace.json | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index bc9739d..2e49e1b 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -1,18 +1,30 @@ { "name": "ki-brain-plugins", - "description": "Claude Code plugins by ki-brain: n8n workflow automation and document conversion", + "owner": { + "name": "ki-brain", + "email": "martina@veser.org" + }, + "metadata": { + "description": "Claude Code plugins by ki-brain: n8n workflow automation and document conversion" + }, "plugins": [ { "name": "n8n-skills", - "source": "n8n-skills", + "source": "./n8n-skills", "description": "Complete n8n workflow automation skills (7 skills: Code JS/Python, Expressions, Patterns, Validation, Config, MCP Tools)", - "version": "1.0.0" + "version": "1.0.0", + "author": { + "name": "ki-brain" + } }, { "name": "doc-converter", - "source": "doc-converter", + "source": "./doc-converter", "description": "Expert guidance for DOCX/PDF to HTML conversion via Gemini Vision API", - "version": "1.0.0" + "version": "1.0.0", + "author": { + "name": "ki-brain" + } } ] }