opencode-swarm 7.79.6 → 7.79.7
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 +5 -3
- package/dist/index.js +6 -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.79.
|
|
55
|
+
version: "7.79.7",
|
|
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",
|
|
@@ -40490,10 +40490,12 @@ function isSkillMaturityEligible(entry, opts, outcomes = entry.retrieval_outcome
|
|
|
40490
40490
|
if (outcomeSignal < 0)
|
|
40491
40491
|
return false;
|
|
40492
40492
|
const strongOutcomes = hasStrongSkillOutcomeRecord(outcomes);
|
|
40493
|
+
if (outcomeSignal > 0 && strongOutcomes)
|
|
40494
|
+
return true;
|
|
40493
40495
|
if (entry.confidence < opts.minConfidence && !strongOutcomes)
|
|
40494
40496
|
return false;
|
|
40495
|
-
const
|
|
40496
|
-
return
|
|
40497
|
+
const distinctPhases = new Set((entry.confirmed_by ?? []).map((c) => c.phase_number).filter((p) => typeof p === "number")).size;
|
|
40498
|
+
return distinctPhases >= opts.minConfirmations || strongOutcomes;
|
|
40497
40499
|
}
|
|
40498
40500
|
function jaccardSimilarity(setA, setB) {
|
|
40499
40501
|
const normA = setA.map((s) => s.toLowerCase());
|
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.79.
|
|
72
|
+
version: "7.79.7",
|
|
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",
|
|
@@ -62861,10 +62861,12 @@ function isSkillMaturityEligible(entry, opts, outcomes = entry.retrieval_outcome
|
|
|
62861
62861
|
if (outcomeSignal < 0)
|
|
62862
62862
|
return false;
|
|
62863
62863
|
const strongOutcomes = hasStrongSkillOutcomeRecord(outcomes);
|
|
62864
|
+
if (outcomeSignal > 0 && strongOutcomes)
|
|
62865
|
+
return true;
|
|
62864
62866
|
if (entry.confidence < opts.minConfidence && !strongOutcomes)
|
|
62865
62867
|
return false;
|
|
62866
|
-
const
|
|
62867
|
-
return
|
|
62868
|
+
const distinctPhases = new Set((entry.confirmed_by ?? []).map((c) => c.phase_number).filter((p) => typeof p === "number")).size;
|
|
62869
|
+
return distinctPhases >= opts.minConfirmations || strongOutcomes;
|
|
62868
62870
|
}
|
|
62869
62871
|
function jaccardSimilarity(setA, setB) {
|
|
62870
62872
|
const normA = setA.map((s) => s.toLowerCase());
|
|
@@ -65459,7 +65461,7 @@ async function runCuratorPhase(directory, phase, agentsDispatched, config3, know
|
|
|
65459
65461
|
try {
|
|
65460
65462
|
const skillModule = await Promise.resolve().then(() => (init_skill_generator(), exports_skill_generator));
|
|
65461
65463
|
for (const cand of skillCandidates) {
|
|
65462
|
-
if (cand.confidence < (config3.min_skill_confidence ??
|
|
65464
|
+
if (cand.confidence < (config3.min_skill_confidence ?? DEFAULT_SKILL_MIN_CONFIDENCE)) {
|
|
65463
65465
|
continue;
|
|
65464
65466
|
}
|
|
65465
65467
|
await skillModule.generateSkills({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-swarm",
|
|
3
|
-
"version": "7.79.
|
|
3
|
+
"version": "7.79.7",
|
|
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",
|