opencode-swarm-plugin 0.31.3 → 0.31.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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +7 -0
- package/dist/index.js +1 -1
- package/dist/plugin.js +1 -1
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -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
|
|
2
|
+
Bundled 812 modules in 79ms
|
|
3
3
|
|
|
4
4
|
index.js 1.71 MB (entry point)
|
|
5
5
|
|
|
6
|
-
Bundled 813 modules in
|
|
6
|
+
Bundled 813 modules in 41ms
|
|
7
7
|
|
|
8
8
|
plugin.js 1.68 MB (entry point)
|
|
9
9
|
|
package/CHANGELOG.md
CHANGED
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().
|
|
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().
|
|
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
|
+
"version": "0.31.4",
|
|
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.
|
|
42
|
+
"swarm-mail": "1.2.0",
|
|
43
43
|
"zod": "4.1.8"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|