opencode-swarm-plugin 0.57.2 → 0.57.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/README.md CHANGED
@@ -480,6 +480,27 @@ bun test
480
480
  bun run typecheck
481
481
  ```
482
482
 
483
+ ### Release (Changesets)
484
+
485
+ Create changeset files manually (avoid `bunx changeset`).
486
+
487
+ ```bash
488
+ # From monorepo root
489
+ cat > .changeset/your-change.md << 'EOF'
490
+ ---
491
+ "opencode-swarm-plugin": patch
492
+ ---
493
+
494
+ Describe the change
495
+ EOF
496
+
497
+ git add .changeset/your-change.md
498
+ git commit -m "chore: add changeset"
499
+ git push
500
+ ```
501
+
502
+ Changesets CI opens a release PR. Merge it to publish via npm OIDC.
503
+
483
504
  ### Evaluation Pipeline
484
505
 
485
506
  Test decomposition quality and coordinator discipline with **Evalite** (TypeScript-native eval framework):
@@ -7,5 +7,13 @@
7
7
  },
8
8
  "repository": "https://github.com/joelhooks/opencode-swarm-plugin",
9
9
  "keywords": ["multi-agent", "coordination", "tasks", "parallel"],
10
+ "mcpServers": {
11
+ "swarm-tools": {
12
+ "command": "node",
13
+ "args": ["${CLAUDE_PLUGIN_ROOT}/dist/mcp/swarm-mcp-server.js"],
14
+ "cwd": "${CLAUDE_PLUGIN_ROOT}",
15
+ "description": "Swarm multi-agent coordination tools"
16
+ }
17
+ },
10
18
  "license": "MIT"
11
19
  }
@@ -53267,7 +53267,7 @@ ${prefix}}`;
53267
53267
  return path22;
53268
53268
  }
53269
53269
  return sp2.join(cwd, path22);
53270
- }, EMPTY_SET, STAT_METHOD_F = "stat", STAT_METHOD_L = "lstat", FSWatcher, chokidar_default, FileWatcher, NormalizedMessageSchema, OpenCodeSwarmEventSchema, SWARM_MAIL_VERSION = "1.10.0";
53270
+ }, EMPTY_SET, STAT_METHOD_F = "stat", STAT_METHOD_L = "lstat", FSWatcher, chokidar_default, FileWatcher, NormalizedMessageSchema, OpenCodeSwarmEventSchema, SWARM_MAIL_VERSION = "1.10.1";
53271
53271
  var init_dist = __esm(() => {
53272
53272
  __create2 = Object.create;
53273
53273
  __getProtoOf2 = Object.getPrototypeOf;
@@ -169788,7 +169788,7 @@ ${prefix}}`;
169788
169788
  return path24;
169789
169789
  }
169790
169790
  return sp22.join(cwd, path24);
169791
- }, EMPTY_SET2, STAT_METHOD_F2 = "stat", STAT_METHOD_L2 = "lstat", FSWatcher2, chokidar_default2, FileWatcher2, NormalizedMessageSchema2, OpenCodeSwarmEventSchema2, SWARM_MAIL_VERSION2 = "1.10.0";
169791
+ }, EMPTY_SET2, STAT_METHOD_F2 = "stat", STAT_METHOD_L2 = "lstat", FSWatcher2, chokidar_default2, FileWatcher2, NormalizedMessageSchema2, OpenCodeSwarmEventSchema2, SWARM_MAIL_VERSION2 = "1.10.1";
169792
169792
  var init_dist9 = __esm(() => {
169793
169793
  __create4 = Object.create;
169794
169794
  __getProtoOf4 = Object.getPrototypeOf;
package/dist/bin/swarm.js CHANGED
@@ -53267,7 +53267,7 @@ ${prefix}}`;
53267
53267
  return path22;
53268
53268
  }
53269
53269
  return sp2.join(cwd, path22);
53270
- }, EMPTY_SET, STAT_METHOD_F = "stat", STAT_METHOD_L = "lstat", FSWatcher, chokidar_default, FileWatcher, NormalizedMessageSchema, OpenCodeSwarmEventSchema, SWARM_MAIL_VERSION = "1.10.0";
53270
+ }, EMPTY_SET, STAT_METHOD_F = "stat", STAT_METHOD_L = "lstat", FSWatcher, chokidar_default, FileWatcher, NormalizedMessageSchema, OpenCodeSwarmEventSchema, SWARM_MAIL_VERSION = "1.10.1";
53271
53271
  var init_dist = __esm(() => {
53272
53272
  __create2 = Object.create;
53273
53273
  __getProtoOf2 = Object.getPrototypeOf;
@@ -169788,7 +169788,7 @@ ${prefix}}`;
169788
169788
  return path24;
169789
169789
  }
169790
169790
  return sp22.join(cwd, path24);
169791
- }, EMPTY_SET2, STAT_METHOD_F2 = "stat", STAT_METHOD_L2 = "lstat", FSWatcher2, chokidar_default2, FileWatcher2, NormalizedMessageSchema2, OpenCodeSwarmEventSchema2, SWARM_MAIL_VERSION2 = "1.10.0";
169791
+ }, EMPTY_SET2, STAT_METHOD_F2 = "stat", STAT_METHOD_L2 = "lstat", FSWatcher2, chokidar_default2, FileWatcher2, NormalizedMessageSchema2, OpenCodeSwarmEventSchema2, SWARM_MAIL_VERSION2 = "1.10.1";
169792
169792
  var init_dist9 = __esm(() => {
169793
169793
  __create4 = Object.create;
169794
169794
  __getProtoOf4 = Object.getPrototypeOf;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm-plugin",
3
- "version": "0.57.2",
3
+ "version": "0.57.3",
4
4
  "description": "Multi-agent swarm coordination for OpenCode with learning capabilities, beads integration, and Agent Mail",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -69,7 +69,7 @@
69
69
  "minimatch": "^10.1.1",
70
70
  "pino": "^9.6.0",
71
71
  "pino-roll": "^1.3.0",
72
- "swarm-mail": "1.10.1",
72
+ "swarm-mail": "1.10.2",
73
73
  "yaml": "^2.8.2",
74
74
  "zod": "4.1.8"
75
75
  },