@gempack/squad-mcp 0.6.1 → 0.6.2

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.
@@ -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.0",
15
+ "version": "0.6.2",
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.1",
3
+ "version": "0.6.2",
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": {
package/CHANGELOG.md CHANGED
@@ -7,6 +7,10 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ### Fixed — Marketplace version pin missed in v0.6.1
11
+
12
+ `.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.
13
+
10
14
  ### Fixed — Plugin manifest validation: shared docs lifted out of `agents/`
11
15
 
12
16
  Claude Code's `/plugin install` rejected the v0.6.0 plugin with `Validation errors: agents: Invalid input`. The plugin manifest's `agents: "./agents/"` directive iterated every `.md` file under `agents/`, including the three `_shared/*.md` reference docs (severity matrix + skill specs) — they lack subagent frontmatter and fail validation.
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.1";
10
+ const SERVER_VERSION = "0.6.2";
11
11
  const server = new Server({
12
12
  name: "squad-mcp",
13
13
  version: SERVER_VERSION,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gempack/squad-mcp",
3
- "version": "0.6.1",
3
+ "version": "0.6.2",
4
4
  "description": "MCP server for the squad-dev workflow: classification, risk scoring, agent selection, advisory orchestration",
5
5
  "type": "module",
6
6
  "license": "Apache-2.0",