opencode-swarm 7.77.2 → 7.77.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/dist/cli/index.js +1 -1
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -52,7 +52,7 @@ var package_default;
|
|
|
52
52
|
var init_package = __esm(() => {
|
|
53
53
|
package_default = {
|
|
54
54
|
name: "opencode-swarm",
|
|
55
|
-
version: "7.77.
|
|
55
|
+
version: "7.77.3",
|
|
56
56
|
description: "Architect-centric agentic swarm plugin for OpenCode - hub-and-spoke orchestration with SME consultation, code generation, and QA review",
|
|
57
57
|
main: "dist/index.js",
|
|
58
58
|
types: "dist/index.d.ts",
|
package/dist/index.js
CHANGED
|
@@ -69,7 +69,7 @@ var package_default;
|
|
|
69
69
|
var init_package = __esm(() => {
|
|
70
70
|
package_default = {
|
|
71
71
|
name: "opencode-swarm",
|
|
72
|
-
version: "7.77.
|
|
72
|
+
version: "7.77.3",
|
|
73
73
|
description: "Architect-centric agentic swarm plugin for OpenCode - hub-and-spoke orchestration with SME consultation, code generation, and QA review",
|
|
74
74
|
main: "dist/index.js",
|
|
75
75
|
types: "dist/index.d.ts",
|
|
@@ -114873,13 +114873,13 @@ async function bumpCountersBatch(directory, bumps) {
|
|
|
114873
114873
|
updated = true;
|
|
114874
114874
|
}
|
|
114875
114875
|
}
|
|
114876
|
-
return updated;
|
|
114876
|
+
return updated ? entries : null;
|
|
114877
114877
|
};
|
|
114878
114878
|
const swarmPath = resolveSwarmKnowledgePath(directory);
|
|
114879
|
-
await transactKnowledge(swarmPath,
|
|
114879
|
+
await transactKnowledge(swarmPath, applyOne);
|
|
114880
114880
|
const hivePath = resolveHiveKnowledgePath();
|
|
114881
114881
|
if (existsSync71(hivePath)) {
|
|
114882
|
-
await transactKnowledge(hivePath,
|
|
114882
|
+
await transactKnowledge(hivePath, applyOne);
|
|
114883
114883
|
}
|
|
114884
114884
|
}
|
|
114885
114885
|
async function bumpCounters(directory, ids, field) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-swarm",
|
|
3
|
-
"version": "7.77.
|
|
3
|
+
"version": "7.77.3",
|
|
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",
|