From ae2a9ab751d422fc661db02aa1c4414983665a11 Mon Sep 17 00:00:00 2001 From: Helge Funk Date: Sun, 1 Feb 2026 23:17:22 +0100 Subject: [PATCH 1/2] fix(git-commit-assistant): update manifest to match Claude Code v2 schema - Change repository field from object to string (breaking schema change) - Add top-level "hooks" wrapper in hooks.json (required by current schema) - Bump version to 1.0.1 Fixes plugin validation errors: - "repository: Invalid input: expected string, received object" - "hooks: Invalid input: expected record, received undefined" --- plugins/git-commit-assistant/hooks/hooks.json | 24 ++++++++++--------- plugins/git-commit-assistant/plugin.json | 7 ++---- 2 files changed, 15 insertions(+), 16 deletions(-) diff --git a/plugins/git-commit-assistant/hooks/hooks.json b/plugins/git-commit-assistant/hooks/hooks.json index 6a88667..6e07975 100644 --- a/plugins/git-commit-assistant/hooks/hooks.json +++ b/plugins/git-commit-assistant/hooks/hooks.json @@ -1,13 +1,15 @@ { - "PostToolUse": [ - { - "matcher": "Write|Edit", - "hooks": [ - { - "type": "command", - "command": "${CLAUDE_PLUGIN_ROOT}/scripts/suggest-commit.sh" - } - ] - } - ] + "hooks": { + "PostToolUse": [ + { + "matcher": "Write|Edit", + "hooks": [ + { + "type": "command", + "command": "${CLAUDE_PLUGIN_ROOT}/scripts/suggest-commit.sh" + } + ] + } + ] + } } diff --git a/plugins/git-commit-assistant/plugin.json b/plugins/git-commit-assistant/plugin.json index 392d608..bc49564 100644 --- a/plugins/git-commit-assistant/plugin.json +++ b/plugins/git-commit-assistant/plugin.json @@ -1,6 +1,6 @@ { "name": "git-commit-assistant", - "version": "1.0.0", + "version": "1.0.1", "description": "Intelligent git commit helper with semantic commit message generation, change analysis, and atomic commit guidance using conventional commits format", "author": { "name": "Daniel Hofheinz", @@ -8,10 +8,7 @@ "url": "https://github.com/dhofheinz/open-plugins" }, "license": "MIT", - "repository": { - "type": "git", - "url": "https://github.com/dhofheinz/open-plugins" - }, + "repository": "https://github.com/dhofheinz/open-plugins", "homepage": "https://github.com/dhofheinz/open-plugins/tree/main/plugins/git-commit-assistant", "keywords": [ "git", From cf0c5f6d36d1148f5f2aec8e14f58c7fda91dd17 Mon Sep 17 00:00:00 2001 From: Helge Funk Date: Sun, 1 Feb 2026 23:27:32 +0100 Subject: [PATCH 2/2] chore: bump git-commit-assistant version in marketplace index --- .claude-plugin/marketplace.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index 84d51a6..4532508 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -82,7 +82,7 @@ }, { "name": "git-commit-assistant", - "version": "1.0.0", + "version": "1.0.1", "description": "Intelligent git commit helper with semantic commit message generation, change analysis, and atomic commit guidance using conventional commits format", "author": { "name": "Daniel Hofheinz",