Skip to content

Commit 92a5ba3

Browse files
committed
fix(plugin): remove invalid commands array from plugin.json
The `commands` field in plugin.json used an array format not supported by the Claude Code plugin schema, causing "Invalid input" validation errors on install. Claude Code auto-discovers commands from the commands/ directory — no explicit declaration needed. Bump version to 5.1.1.
1 parent 786b662 commit 92a5ba3

6 files changed

Lines changed: 8 additions & 17 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"name": "codingbuddy",
1313
"source": "./packages/claude-code-plugin",
1414
"description": "PLAN/ACT/EVAL workflow, specialist agents, and reusable skills for systematic TDD development",
15-
"version": "5.1.0",
15+
"version": "5.1.1",
1616
"category": "development"
1717
}
1818
]

apps/mcp-server/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codingbuddy",
3-
"version": "5.1.0",
3+
"version": "5.1.1",
44
"description": "Multi-AI Rules MCP Server - One source of truth for AI coding rules across all AI assistants",
55
"author": "JeremyDev87",
66
"license": "MIT",
@@ -103,4 +103,3 @@
103103
},
104104
"packageManager": "yarn@4.11.0"
105105
}
106-

apps/mcp-server/src/shared/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
* Single source of truth for the runtime package version.
33
* Updated automatically by scripts/bump-version.sh on each release.
44
*/
5-
export const VERSION = '5.1.0';
5+
export const VERSION = '5.1.1';
Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,9 @@
11
{
22
"name": "codingbuddy",
3-
"version": "5.1.0",
3+
"version": "5.1.1",
44
"description": "PLAN/ACT/EVAL workflow with auto-detection, specialist agents, and reusable skills for systematic TDD development",
55
"author": {
66
"name": "JeremyDev87",
77
"email": "soundbrokaz@kakao.com"
8-
},
9-
"commands": [
10-
{
11-
"name": "buddy",
12-
"description": "Show project status, recommended agents, and next actions",
13-
"file": "../commands/buddy.md",
14-
"user-invocable": true
15-
}
16-
]
8+
}
179
}

packages/claude-code-plugin/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codingbuddy-claude-plugin",
3-
"version": "5.1.0",
3+
"version": "5.1.1",
44
"description": "Claude Code Plugin for CodingBuddy - PLAN/ACT/EVAL workflow, specialist agents, and reusable skills",
55
"author": "JeremyDev87",
66
"license": "MIT",
@@ -49,7 +49,7 @@
4949
"test:coverage": "vitest run --coverage"
5050
},
5151
"peerDependencies": {
52-
"codingbuddy": "^5.1.0"
52+
"codingbuddy": "^5.1.1"
5353
},
5454
"peerDependenciesMeta": {
5555
"codingbuddy": {

packages/rules/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codingbuddy-rules",
3-
"version": "5.1.0",
3+
"version": "5.1.1",
44
"description": "AI coding rules for consistent practices across AI assistants",
55
"main": "index.js",
66
"types": "index.d.ts",

0 commit comments

Comments
 (0)