opencode-swarm-plugin 0.31.3 → 0.31.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.
@@ -1,9 +1,9 @@
1
1
  $ bun build ./src/index.ts --outdir ./dist --target node --external @electric-sql/pglite --external swarm-mail && bun build ./src/plugin.ts --outfile ./dist/plugin.js --target node --external @electric-sql/pglite --external swarm-mail && tsc
2
- Bundled 812 modules in 141ms
2
+ Bundled 812 modules in 79ms
3
3
 
4
4
  index.js 1.71 MB (entry point)
5
5
 
6
- Bundled 813 modules in 37ms
6
+ Bundled 813 modules in 41ms
7
7
 
8
8
  plugin.js 1.68 MB (entry point)
9
9
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # opencode-swarm-plugin
2
2
 
3
+ ## 0.31.5
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`64368aa`](https://github.com/joelhooks/swarm-tools/commit/64368aa6106089346cd2b1324f6235d5c673964b)]:
8
+ - swarm-mail@1.2.1
9
+
10
+ ## 0.31.4
11
+
12
+ ### Patch Changes
13
+
14
+ - Updated dependencies [[`70ff3e0`](https://github.com/joelhooks/swarm-tools/commit/70ff3e054cd1991154f7631ce078798de1076ba8)]:
15
+ - swarm-mail@1.2.0
16
+
3
17
  ## 0.31.3
4
18
 
5
19
  ### Patch Changes
package/dist/index.js CHANGED
@@ -27478,7 +27478,7 @@ var QuerySwarmContextsArgsSchema = exports_external.object({
27478
27478
  // src/schemas/worker-handoff.ts
27479
27479
  init_zod();
27480
27480
  var WorkerHandoffContractSchema = exports_external.object({
27481
- task_id: exports_external.string().regex(/^[a-z0-9]+(-[a-z0-9]+){2,}(\.[\w-]+)?$/, "Invalid task ID format (expected: project-slug-hash with minimum 3 segments)"),
27481
+ task_id: exports_external.string().min(1, "Task ID cannot be empty"),
27482
27482
  files_owned: exports_external.array(exports_external.string()).default([]),
27483
27483
  files_readonly: exports_external.array(exports_external.string()).default([]),
27484
27484
  dependencies_completed: exports_external.array(exports_external.string()).default([]),
package/dist/plugin.js CHANGED
@@ -27451,7 +27451,7 @@ var QuerySwarmContextsArgsSchema = exports_external.object({
27451
27451
  // src/schemas/worker-handoff.ts
27452
27452
  init_zod();
27453
27453
  var WorkerHandoffContractSchema = exports_external.object({
27454
- task_id: exports_external.string().regex(/^[a-z0-9]+(-[a-z0-9]+){2,}(\.[\w-]+)?$/, "Invalid task ID format (expected: project-slug-hash with minimum 3 segments)"),
27454
+ task_id: exports_external.string().min(1, "Task ID cannot be empty"),
27455
27455
  files_owned: exports_external.array(exports_external.string()).default([]),
27456
27456
  files_readonly: exports_external.array(exports_external.string()).default([]),
27457
27457
  dependencies_completed: exports_external.array(exports_external.string()).default([]),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-swarm-plugin",
3
- "version": "0.31.3",
3
+ "version": "0.31.5",
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",
@@ -39,7 +39,7 @@
39
39
  "gray-matter": "^4.0.3",
40
40
  "ioredis": "^5.4.1",
41
41
  "minimatch": "^10.1.1",
42
- "swarm-mail": "1.1.1",
42
+ "swarm-mail": "1.2.1",
43
43
  "zod": "4.1.8"
44
44
  },
45
45
  "devDependencies": {