@gempack/squad-mcp 0.6.4 → 0.6.5
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 +3 -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.5",
|
|
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.5",
|
|
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": {
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"skills": "./skills/",
|
|
31
31
|
"mcpServers": {
|
|
32
32
|
"squad": {
|
|
33
|
-
"command": "
|
|
34
|
-
"args": ["
|
|
33
|
+
"command": "npx",
|
|
34
|
+
"args": ["-y", "@gempack/squad-mcp@0.6.5"]
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
}
|
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
|
+
## [0.6.5] - 2026-05-10
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **Plugin MCP server now runs from npm, not from gitignored `dist/`.** v0.6.4 (and all earlier releases) shipped a plugin manifest pointing at `${CLAUDE_PLUGIN_ROOT}/dist/index.js`. Claude Code's plugin install does a shallow `git clone` and never runs `npm install` / `npm run build`, so `dist/` (gitignored) was missing on disk and the MCP server failed to start with `Failed to reconnect to plugin:squad:squad`. The plugin manifest now uses `command: "npx"` + `args: ["-y", "@gempack/squad-mcp@<version>"]`, pulling the pre-built tarball published with provenance. The plugin still ships agents/commands/skills directly (those are static markdown). Side benefit: plugin and npm install paths now share a single MCP runtime.
|
|
15
|
+
- **`release.yml` version-pin guard** now also verifies the npx pin in `mcpServers.squad.args` matches the git tag — any future bump that forgets this field fails publish.
|
|
16
|
+
|
|
10
17
|
## [0.6.4] - 2026-05-10
|
|
11
18
|
|
|
12
19
|
### Changed
|
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.5";
|
|
11
11
|
const server = new Server({
|
|
12
12
|
name: "squad-mcp",
|
|
13
13
|
version: SERVER_VERSION,
|
package/package.json
CHANGED