agent-coord-mcp 0.25.3 → 0.25.4

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/dist/server.js CHANGED
@@ -160,7 +160,7 @@ function buildServer(initialBound, opts = {}) {
160
160
  }
161
161
  const server = new McpServer({
162
162
  name: "agent-coord",
163
- version: "0.25.3",
163
+ version: "0.25.4",
164
164
  });
165
165
  const addTool = (name, description, inputSchema, cb) => {
166
166
  server.registerTool(name, { description, inputSchema: z.object(inputSchema) }, async (args) => cb((args ?? {})));
File without changes
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-coord-mcp",
3
- "version": "0.25.3",
3
+ "version": "0.25.4",
4
4
  "description": "File-backed MCP server for coordinating multiple AI coding agents (Claude Code, Cursor, Cline, etc.). Local stdio or networked over Streamable HTTP.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -8,17 +8,6 @@
8
8
  "coord-chat": "scripts/coord-chat.mjs",
9
9
  "coord-pusher": "scripts/coord-pusher.mjs"
10
10
  },
11
- "scripts": {
12
- "clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
13
- "build": "pnpm run clean && tsc",
14
- "prepare": "node scripts/check-self-dependency.mjs && pnpm run clean && tsc",
15
- "prepack": "node scripts/check-self-dependency.mjs && pnpm run build",
16
- "start": "node dist/server.js",
17
- "dev": "tsx src/server.ts",
18
- "pretest": "node scripts/check-self-dependency.mjs && tsc",
19
- "test": "node scripts/check-test-count.mjs",
20
- "test:raw": "node --test \"test/*.test.mjs\""
21
- },
22
11
  "files": [
23
12
  "dist",
24
13
  "src",
@@ -54,15 +43,24 @@
54
43
  "node": ">=18"
55
44
  },
56
45
  "dependencies": {
57
- "@davidbalzan/groundwork-seam": "workspace:*",
58
46
  "@modelcontextprotocol/sdk": "^1.30.0",
59
47
  "proper-lockfile": "^4.1.2",
60
- "zod": "^4.4.3"
48
+ "zod": "^4.4.3",
49
+ "@davidbalzan/groundwork-seam": "0.1.2"
61
50
  },
62
51
  "devDependencies": {
63
52
  "@types/node": "^26.2.0",
64
53
  "@types/proper-lockfile": "^4.1.4",
65
54
  "tsx": "^4.23.12",
66
55
  "typescript": "^7.0.2"
56
+ },
57
+ "scripts": {
58
+ "clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
59
+ "build": "pnpm run clean && tsc",
60
+ "start": "node dist/server.js",
61
+ "dev": "tsx src/server.ts",
62
+ "pretest": "node scripts/check-self-dependency.mjs && tsc",
63
+ "test": "node scripts/check-test-count.mjs",
64
+ "test:raw": "node --test \"test/*.test.mjs\""
67
65
  }
68
- }
66
+ }
@@ -0,0 +1,23 @@
1
+ #!/usr/bin/env node
2
+ // prepublishOnly: refuse a publish that would ship a literal workspace:* dep.
3
+ //
4
+ // npm does NOT rewrite `workspace:` protocols at publish time; pnpm does.
5
+ // 0.25.3 shipped `"@davidbalzan/groundwork-seam": "workspace:*"` to the
6
+ // registry exactly this way (npm publish from the package dir, 2026-08-22) and
7
+ // every `npm i -g` failed with "unsupported URL type workspace:". The repo's
8
+ // pack gate checks pnpm's tarball, which is always clean — the npm-publish
9
+ // path had no witness. This is it.
10
+ import { readFileSync } from "node:fs";
11
+
12
+ const pkg = JSON.parse(readFileSync(new URL("../package.json", import.meta.url), "utf8"));
13
+ const carries = JSON.stringify({ ...pkg.dependencies, ...pkg.optionalDependencies }).includes("workspace:");
14
+ const agent = process.env.npm_config_user_agent ?? "";
15
+ if (carries && !agent.startsWith("pnpm")) {
16
+ console.error(
17
+ "[check-publish-tool] REFUSED: package.json carries a workspace:* dependency and the publisher is " +
18
+ `'${agent.split("/")[0] || "unknown"}', which will NOT rewrite it — the published tarball would be uninstallable ` +
19
+ "(0.25.3 shipped exactly this). Publish with `pnpm publish --filter agent-coord-mcp --access public`, " +
20
+ "or `pnpm --filter agent-coord-mcp pack` and `npm publish <tarball>`.",
21
+ );
22
+ process.exit(1);
23
+ }
File without changes
File without changes
File without changes
File without changes
package/src/server.ts CHANGED
@@ -241,7 +241,7 @@ function buildServer(initialBound?: string, opts: { trackSession?: boolean } = {
241
241
 
242
242
  const server = new McpServer({
243
243
  name: "agent-coord",
244
- version: "0.25.3",
244
+ version: "0.25.4",
245
245
  });
246
246
 
247
247
  const addTool = (