@gempack/squad-mcp 0.6.2 → 0.6.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +18 -3
- package/CHANGELOG.md +7 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"repo": "ggemba/squad-mcp"
|
|
13
13
|
},
|
|
14
14
|
"description": "Squad-dev workflow: deterministic classification, risk scoring, agent selection, advisory orchestration over MCP, native subagents, plus /squad and /squad-review slash commands.",
|
|
15
|
-
"version": "0.6.
|
|
15
|
+
"version": "0.6.3",
|
|
16
16
|
"license": "Apache-2.0",
|
|
17
17
|
"homepage": "https://github.com/ggemba/squad-mcp"
|
|
18
18
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "squad",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
4
|
"description": "Squad-dev workflow as a Claude Code plugin: classification, risk scoring, agent selection, advisory orchestration. Bundles an MCP server, native subagents, and the /squad and /squad-review slash commands.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -10,8 +10,23 @@
|
|
|
10
10
|
"homepage": "https://github.com/ggemba/squad-mcp#readme",
|
|
11
11
|
"repository": "https://github.com/ggemba/squad-mcp",
|
|
12
12
|
"keywords": ["mcp", "squad-dev", "code-review", "advisory", "agent"],
|
|
13
|
-
"agents":
|
|
14
|
-
|
|
13
|
+
"agents": [
|
|
14
|
+
"./agents/product-owner.md",
|
|
15
|
+
"./agents/tech-lead-planner.md",
|
|
16
|
+
"./agents/tech-lead-consolidator.md",
|
|
17
|
+
"./agents/senior-architect.md",
|
|
18
|
+
"./agents/senior-dba.md",
|
|
19
|
+
"./agents/senior-developer.md",
|
|
20
|
+
"./agents/senior-dev-reviewer.md",
|
|
21
|
+
"./agents/senior-dev-security.md",
|
|
22
|
+
"./agents/senior-qa.md"
|
|
23
|
+
],
|
|
24
|
+
"commands": [
|
|
25
|
+
"./commands/squad.md",
|
|
26
|
+
"./commands/squad-review.md",
|
|
27
|
+
"./commands/brainstorm.md",
|
|
28
|
+
"./commands/commit-suggest.md"
|
|
29
|
+
],
|
|
15
30
|
"skills": "./skills/",
|
|
16
31
|
"mcpServers": {
|
|
17
32
|
"squad": {
|
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
### Fixed — Plugin manifest `agents` and `commands` shape (Claude Code rejected v0.6.2)
|
|
11
|
+
|
|
12
|
+
`/plugin install squad@gempack` failed v0.6.2 with `Validation errors: agents: Invalid input` because `.claude-plugin/plugin.json` declared `"agents": "./agents/"` (string) and `"commands": "./commands/"` (string). Per the Claude Code plugin reference, those fields must be **arrays of explicit file paths** — only `skills` accepts a directory string.
|
|
13
|
+
|
|
14
|
+
- `.claude-plugin/plugin.json`: `agents` is now a 9-entry array listing each subagent's `.md` path; `commands` is a 4-entry array. `skills` stays as `./skills/`.
|
|
15
|
+
- Bumped to `0.6.3` across all four version pins (the release-yml guard added in v0.6.2 catches future drift).
|
|
16
|
+
|
|
10
17
|
### Fixed — Marketplace version pin missed in v0.6.1
|
|
11
18
|
|
|
12
19
|
`.claude-plugin/marketplace.json` was still pinned to `0.6.0` after v0.6.1 shipped, so `/plugin install squad@gempack` kept resolving to the broken v0.6.0 build. Bumped to `0.6.2` and added a release-workflow check that verifies all four version pins (`package.json`, `.claude-plugin/plugin.json`, `.claude-plugin/marketplace.json`, `src/index.ts SERVER_VERSION`) match the git tag. Future bumps fail loudly if any pin is forgotten.
|
package/dist/index.js
CHANGED
|
@@ -7,7 +7,7 @@ import { listResources, readResource } from "./resources/registry.js";
|
|
|
7
7
|
import { listPrompts, getPrompt } from "./prompts/registry.js";
|
|
8
8
|
import { logger, setupProcessHandlers } from "./observability/logger.js";
|
|
9
9
|
setupProcessHandlers();
|
|
10
|
-
const SERVER_VERSION = "0.6.
|
|
10
|
+
const SERVER_VERSION = "0.6.3";
|
|
11
11
|
const server = new Server({
|
|
12
12
|
name: "squad-mcp",
|
|
13
13
|
version: SERVER_VERSION,
|
package/package.json
CHANGED