opencode-swarm 7.121.3 → 7.121.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/cli/{curator-ed91r7rw.js → curator-3azybqrw.js} +1 -1
- package/dist/cli/{curator-llm-factory-q9veqj3h.js → curator-llm-factory-6rafny5e.js} +1 -1
- package/dist/cli/{guardrail-explain-0vcaa7hj.js → guardrail-explain-d1m747g5.js} +2 -2
- package/dist/cli/{hive-promoter-dg6fk563.js → hive-promoter-4xnj3fdk.js} +1 -1
- package/dist/cli/{index-g9eg7z93.js → index-2k6z335c.js} +2 -2
- package/dist/cli/{index-qad0m9bz.js → index-982hhpcm.js} +1 -1
- package/dist/cli/{index-fs2q8jyf.js → index-q0fv0xec.js} +576 -476
- package/dist/cli/index.js +1 -1
- package/dist/db/index.d.ts +4 -0
- package/dist/db/sqlite-loader.d.ts +78 -0
- package/dist/index.js +245 -245
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-swarm",
|
|
3
|
-
"version": "7.121.
|
|
3
|
+
"version": "7.121.4",
|
|
4
4
|
"description": "Architect-centric agentic swarm plugin for OpenCode - hub-and-spoke orchestration with SME consultation, code generation, and QA review",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -100,7 +100,8 @@
|
|
|
100
100
|
"package:smoke": "node scripts/package-smoke.mjs",
|
|
101
101
|
"prepare": "bun run build",
|
|
102
102
|
"repro:704": "node scripts/repro-704.mjs",
|
|
103
|
-
"repro:1144": "bun scripts/repro-1144.mjs"
|
|
103
|
+
"repro:1144": "bun scripts/repro-1144.mjs",
|
|
104
|
+
"repro:1873": "bun build scripts/repro-1873-entry.ts --outdir dist-build-test/repro-1873 --target node --format esm && node scripts/repro-1873.mjs"
|
|
104
105
|
},
|
|
105
106
|
"dependencies": {
|
|
106
107
|
"@opencode-ai/plugin": "^1.1.53",
|