From d6086a92f43a0a3cbc52236a30c672271f6f8009 Mon Sep 17 00:00:00 2001 From: Snider Date: Fri, 13 Mar 2026 10:54:44 +0000 Subject: [PATCH] fix(plugin): remove invalid commands/repository schema from plugin.json Commands auto-discovered from commands/ directory. Repository must be a string, not an object. Co-Authored-By: Virgil --- .claude-plugin/plugin.json | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index d688851..f5ef04c 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -7,10 +7,7 @@ "email": "hello@host.uk.com" }, "homepage": "https://forge.lthn.ai/core/go-build", - "repository": { - "type": "git", - "url": "ssh://git@forge.lthn.ai:2223/core/go-build.git" - }, + "repository": "https://forge.lthn.ai/core/go-build.git", "license": "EUPL-1.2", "keywords": [ "claude", @@ -18,27 +15,5 @@ "qa", "build", "lint" - ], - "commands": [ - { - "name": "qa", - "description": "Run full QA pipeline and fix all issues iteratively", - "file": "commands/qa.md" - }, - { - "name": "check", - "description": "Run QA checks without fixing (report only)", - "file": "commands/check.md" - }, - { - "name": "fix", - "description": "Fix a specific QA issue", - "file": "commands/fix.md" - }, - { - "name": "lint", - "description": "Run linter and fix issues", - "file": "commands/lint.md" - } ] }