opencode-swarm 7.134.0 → 7.134.1
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/.opencode/skills/codebase-review-swarm/SKILL.md +18 -2
- package/.opencode/skills/codebase-review-swarm/references/review-protocol-v8.2.md +18 -2
- package/.opencode/skills/swarm-implement/SKILL.md +17 -2
- package/dist/background/pr-event-subscribers.d.ts +1 -1
- package/dist/cli/{config-doctor-t5r92674.js → config-doctor-4avzz3rh.js} +2 -2
- package/dist/cli/{curation-policy-3smfn2a3.js → curation-policy-8vkzjtwb.js} +2 -2
- package/dist/cli/{curator-hva8f3nf.js → curator-3vsvhwav.js} +12 -12
- package/dist/cli/{curator-drift-tsyyf4b4.js → curator-drift-9q6f85bm.js} +1 -1
- package/dist/cli/{curator-llm-factory-p3aqev12.js → curator-llm-factory-2qk8q4y9.js} +12 -12
- package/dist/cli/{guardrail-explain-k8mcvk61.js → guardrail-explain-tw521x47.js} +13 -13
- package/dist/cli/{guardrail-log-absma1rv.js → guardrail-log-e3jrwdw8.js} +3 -3
- package/dist/cli/{hive-promoter-jwd51gzk.js → hive-promoter-sdy5qjzn.js} +12 -12
- package/dist/cli/{index-m2s0gbzt.js → index-0541h76w.js} +1 -1
- package/dist/cli/{index-hgh01f6h.js → index-1v5mby7t.js} +1 -1
- package/dist/cli/{index-baawkm48.js → index-2j8f71c3.js} +4 -4
- package/dist/cli/{index-3dtjhr26.js → index-358f9h8p.js} +47 -36
- package/dist/cli/{index-kapharv7.js → index-463k8mfr.js} +2 -2
- package/dist/cli/{index-2njes601.js → index-6b69mp0r.js} +2 -2
- package/dist/cli/{index-dgxgvzab.js → index-8t9xpn1a.js} +1 -1
- package/dist/cli/{index-c3e0ymrg.js → index-9z1q181f.js} +1 -1
- package/dist/cli/{index-g87ty4wp.js → index-bq2848a3.js} +1 -1
- package/dist/cli/{index-xfejq1p9.js → index-c0e3vhv9.js} +1 -1
- package/dist/cli/{index-jpkxjmfw.js → index-kwm7hz18.js} +5 -5
- package/dist/cli/{index-j6ywarjp.js → index-m8ajf6wb.js} +3 -3
- package/dist/cli/{index-eedq2y40.js → index-mz6sqtm9.js} +14 -14
- package/dist/cli/{index-rkyhv4p5.js → index-pz49rx4y.js} +2 -2
- package/dist/cli/{index-b5ek2cge.js → index-y2esw64s.js} +1 -1
- package/dist/cli/{index-y0kk3rtv.js → index-zjw32rv9.js} +1 -1
- package/dist/cli/index.js +12 -12
- package/dist/cli/{knowledge-escalator-mkdac2m7.js → knowledge-escalator-v09w0jmg.js} +3 -3
- package/dist/cli/{knowledge-events-jjc9qbe0.js → knowledge-events-qp19r2he.js} +1 -1
- package/dist/cli/{knowledge-store-9e0w1kxm.js → knowledge-store-n5pvv0s3.js} +1 -1
- package/dist/cli/{knowledge-validator-h1nrn2pk.js → knowledge-validator-qg31ycbb.js} +4 -4
- package/dist/cli/{scan-cursor-mk3tq3sf.js → scan-cursor-wtzfvkh2.js} +2 -2
- package/dist/cli/{schema-bjb0yzsq.js → schema-erk5bz43.js} +1 -1
- package/dist/cli/{skill-generator-p1de0wkr.js → skill-generator-nxs65tq3.js} +5 -5
- package/dist/hooks/guardrails/messages-transform.d.ts +10 -0
- package/dist/hooks/guardrails/stored-input-args.d.ts +6 -0
- package/dist/index.js +38 -37
- package/dist/prm/escalation.d.ts +1 -11
- package/dist/prm/index.d.ts +1 -0
- package/dist/prm/types.d.ts +0 -2
- package/dist/session/snapshot-writer.d.ts +1 -0
- package/dist/state.d.ts +11 -0
- package/dist/utils/advisory-queue.d.ts +60 -0
- package/package.json +1 -1
|
@@ -71,8 +71,16 @@ When the review target is a PR branch or commit range, complete this before any
|
|
|
71
71
|
explorer or candidate-generation dispatch:
|
|
72
72
|
|
|
73
73
|
1. Verify the working tree is clean with `git status --porcelain`. If
|
|
74
|
-
uncommitted changes exist,
|
|
75
|
-
|
|
74
|
+
uncommitted changes exist, **you (the orchestrator)** must handle them
|
|
75
|
+
before any explorer/candidate dispatch — use `prepare_pr_workflow_checkout`
|
|
76
|
+
(the controller-owned path; it preserves every dirty path — including
|
|
77
|
+
untracked files when called with no `paths` argument — and returns a recovery
|
|
78
|
+
command), or a git worktree (see `running-tests` skill precedent). Note:
|
|
79
|
+
`git branch tmp/save-<topic>` only moves the HEAD ref — it does not record or
|
|
80
|
+
preserve uncommitted working-tree changes, so do not rely on it to save dirty
|
|
81
|
+
work. **Never delegate `git stash`, `git reset`, `git checkout -- .`,
|
|
82
|
+
or `git restore` to subagents** — these are worktree-global operations that
|
|
83
|
+
destroy sibling agents' in-flight work under parallel execution.
|
|
76
84
|
2. Fetch and check out the PR head branch locally. Explorer agents read the
|
|
77
85
|
working-tree filesystem (`Read`/`Glob`/`Grep`), not git history, so reviewing
|
|
78
86
|
a PR while the base branch is checked out produces invalid candidates.
|
|
@@ -80,6 +88,14 @@ explorer or candidate-generation dispatch:
|
|
|
80
88
|
packet and pass that range in every explorer/candidate-generation delegation
|
|
81
89
|
so agents have revision context for targeted `git show` inspection.
|
|
82
90
|
|
|
91
|
+
**Subagent prohibition — must reach every subagent prompt:**
|
|
92
|
+
Include this line verbatim in every explorer/candidate-generation lane
|
|
93
|
+
or subagent dispatch prompt:
|
|
94
|
+
"You are a subagent sharing a worktree with sibling agents. You MUST
|
|
95
|
+
NOT run `git stash`, `git reset`, `git checkout -- .`, `git restore`,
|
|
96
|
+
or any other worktree-global destructive git command. These destroy
|
|
97
|
+
sibling agents' in-flight work without error."
|
|
98
|
+
|
|
83
99
|
## Async advisory lanes
|
|
84
100
|
|
|
85
101
|
When selected-track inventory or candidate generation decomposes into independent read-only units, launch those units with `dispatch_lanes_async` when available. Record each returned `batch_id`, then continue architect-owned deterministic work that does not depend on lane output: update the coverage ledger shell, run safe local tools, prepare validation shards, and document unresolved coverage units. Do not mark coverage `REVIEWED`, promote candidates to findings, or write the final report from running lanes.
|
|
@@ -196,8 +196,16 @@ If the review target is a PR branch or commit range, complete this before Phase
|
|
|
196
196
|
candidate-generation dispatch:
|
|
197
197
|
|
|
198
198
|
1. Verify the working tree is clean with `git status --porcelain`. If
|
|
199
|
-
uncommitted changes exist,
|
|
200
|
-
|
|
199
|
+
uncommitted changes exist, **you (the orchestrator)** must handle them
|
|
200
|
+
before any explorer/candidate dispatch — use `prepare_pr_workflow_checkout`
|
|
201
|
+
(the controller-owned path; it preserves every dirty path — including
|
|
202
|
+
untracked files when called with no `paths` argument — and returns a recovery
|
|
203
|
+
command), or a git worktree (see `running-tests` skill precedent). Note:
|
|
204
|
+
`git branch tmp/save-<topic>` only moves the HEAD ref — it does not record or
|
|
205
|
+
preserve uncommitted working-tree changes, so do not rely on it to save dirty
|
|
206
|
+
work. **Never delegate `git stash`, `git reset`, `git checkout -- .`,
|
|
207
|
+
or `git restore` to subagents** — these are worktree-global operations that
|
|
208
|
+
destroy sibling agents' in-flight work under parallel execution.
|
|
201
209
|
2. Fetch and check out the PR head branch locally. Explorer agents read the
|
|
202
210
|
working-tree filesystem (`Read`/`Glob`/`Grep`), not git history; without the
|
|
203
211
|
checkout, they inspect the base branch and produce invalid candidates.
|
|
@@ -205,6 +213,14 @@ candidate-generation dispatch:
|
|
|
205
213
|
commit range in every explorer/candidate-generation delegation so lanes can
|
|
206
214
|
use `git show` for revision-specific inspection.
|
|
207
215
|
|
|
216
|
+
**Subagent prohibition — must reach every subagent prompt:**
|
|
217
|
+
Include this line verbatim in every explorer/candidate-generation
|
|
218
|
+
subagent dispatch prompt:
|
|
219
|
+
"You are a subagent sharing a worktree with sibling agents. You MUST
|
|
220
|
+
NOT run `git stash`, `git reset`, `git checkout -- .`, `git restore`,
|
|
221
|
+
or any other worktree-global destructive git command. These destroy
|
|
222
|
+
sibling agents' in-flight work without error."
|
|
223
|
+
|
|
208
224
|
### 0K — User review mode gate
|
|
209
225
|
|
|
210
226
|
Stop and present the ten review choices unless the user’s original request already selected tracks and explicitly authorized continuing. If the user selects a focused review, do not run unrelated tracks; record omitted tracks in coverage notes.
|
|
@@ -75,8 +75,16 @@ When implementation or review-scoping work depends on explorer agents reading a
|
|
|
75
75
|
PR branch or commit range, complete this before Phase 1 explorer dispatch:
|
|
76
76
|
|
|
77
77
|
1. Verify the working tree is clean with `git status --porcelain`. If
|
|
78
|
-
uncommitted changes exist,
|
|
79
|
-
|
|
78
|
+
uncommitted changes exist, **you (the orchestrator)** must handle them
|
|
79
|
+
before Phase 1 dispatch — use `prepare_pr_workflow_checkout` (the
|
|
80
|
+
controller-owned path; it preserves every dirty path — including untracked
|
|
81
|
+
files when called with no `paths` argument — and returns a recovery command),
|
|
82
|
+
or a git worktree (see `running-tests` skill precedent). Note: `git branch
|
|
83
|
+
tmp/save-<topic>` only moves the HEAD ref — it does not record or preserve
|
|
84
|
+
uncommitted working-tree changes, so do not rely on it to save dirty work.
|
|
85
|
+
**Never delegate `git stash`, `git reset`, `git checkout -- .`,
|
|
86
|
+
or `git restore` to subagents** — these are worktree-global operations that
|
|
87
|
+
destroy sibling agents' in-flight work under parallel execution.
|
|
80
88
|
2. Fetch and check out the PR head branch locally. Explorer agents read files
|
|
81
89
|
from the working tree (`Read`/`Glob`/`Grep`), not from git history, so a stale
|
|
82
90
|
checkout makes them inspect the base branch.
|
|
@@ -90,6 +98,13 @@ Launch parallel subagents for disjoint investigation tasks such as repository
|
|
|
90
98
|
mapping, locating existing patterns, finding tests/contracts, side-effect
|
|
91
99
|
analysis, and dependency or migration checks. Keep the main context focused.
|
|
92
100
|
|
|
101
|
+
**Subagent prohibition — must reach every subagent prompt:**
|
|
102
|
+
Include this line verbatim in every subagent dispatch prompt:
|
|
103
|
+
"You are a subagent sharing a worktree with sibling agents. You MUST
|
|
104
|
+
NOT run `git stash`, `git reset`, `git checkout -- .`, `git restore`,
|
|
105
|
+
or any other worktree-global destructive git command. These destroy
|
|
106
|
+
sibling agents' in-flight work without error."
|
|
107
|
+
|
|
93
108
|
### Phase 2 - Plan
|
|
94
109
|
|
|
95
110
|
Create a concrete implementation plan before editing for any non-trivial task.
|
|
@@ -97,7 +97,7 @@ declare function scheduleClearUnaddressed(directory: string, correlationId: stri
|
|
|
97
97
|
/**
|
|
98
98
|
* Format a structured advisory message for the given PR event type.
|
|
99
99
|
* Returns null for unknown event types. The first token is always the
|
|
100
|
-
* dedup token
|
|
100
|
+
* dedup token from buildPrEventToken.
|
|
101
101
|
*/
|
|
102
102
|
declare function formatAdvisory(type: string, payload: PrEventPayload): string | null;
|
|
103
103
|
export {};
|
|
@@ -12,8 +12,8 @@ import {
|
|
|
12
12
|
shouldRunOnStartup,
|
|
13
13
|
writeBackupArtifact,
|
|
14
14
|
writeDoctorArtifact
|
|
15
|
-
} from "./index-
|
|
16
|
-
import"./index-
|
|
15
|
+
} from "./index-bq2848a3.js";
|
|
16
|
+
import"./index-y2esw64s.js";
|
|
17
17
|
import"./index-bk5tah7q.js";
|
|
18
18
|
import"./index-bpmtbmy9.js";
|
|
19
19
|
import"./index-z6xqpmqg.js";
|
|
@@ -4,9 +4,9 @@ import {
|
|
|
4
4
|
authorizeCuration,
|
|
5
5
|
buildConfigFingerprintInput,
|
|
6
6
|
readCohortConfigFingerprint
|
|
7
|
-
} from "./index-
|
|
7
|
+
} from "./index-zjw32rv9.js";
|
|
8
8
|
import"./index-rtry5xyf.js";
|
|
9
|
-
import"./index-
|
|
9
|
+
import"./index-8t9xpn1a.js";
|
|
10
10
|
import"./index-ae75rja9.js";
|
|
11
11
|
import"./index-cfkvc5q9.js";
|
|
12
12
|
import"./index-dd7ttx8x.js";
|
|
@@ -14,33 +14,33 @@ import {
|
|
|
14
14
|
runCuratorInit,
|
|
15
15
|
runCuratorPhase,
|
|
16
16
|
writeCuratorSummary
|
|
17
|
-
} from "./index-
|
|
17
|
+
} from "./index-358f9h8p.js";
|
|
18
18
|
import"./index-13xxjfhn.js";
|
|
19
|
-
import"./index-
|
|
20
|
-
import"./index-
|
|
19
|
+
import"./index-1v5mby7t.js";
|
|
20
|
+
import"./index-bq2848a3.js";
|
|
21
21
|
import"./index-k742ecbm.js";
|
|
22
22
|
import"./index-4905hd2m.js";
|
|
23
23
|
import"./index-134d35c1.js";
|
|
24
|
-
import"./index-
|
|
25
|
-
import"./index-
|
|
26
|
-
import"./index-
|
|
24
|
+
import"./index-m8ajf6wb.js";
|
|
25
|
+
import"./index-kwm7hz18.js";
|
|
26
|
+
import"./index-0541h76w.js";
|
|
27
27
|
import"./index-vxv732ex.js";
|
|
28
28
|
import"./index-c8s9a3zh.js";
|
|
29
29
|
import"./index-9ss2m4rs.js";
|
|
30
30
|
import"./index-wk1h5ec2.js";
|
|
31
31
|
import"./index-1j3682j8.js";
|
|
32
|
-
import"./index-
|
|
33
|
-
import"./index-
|
|
32
|
+
import"./index-6b69mp0r.js";
|
|
33
|
+
import"./index-zjw32rv9.js";
|
|
34
34
|
import"./index-rtry5xyf.js";
|
|
35
|
-
import"./index-
|
|
36
|
-
import"./index-
|
|
35
|
+
import"./index-2j8f71c3.js";
|
|
36
|
+
import"./index-8t9xpn1a.js";
|
|
37
37
|
import"./index-ae75rja9.js";
|
|
38
38
|
import"./index-cfkvc5q9.js";
|
|
39
39
|
import"./index-dd7ttx8x.js";
|
|
40
|
-
import"./index-
|
|
40
|
+
import"./index-c0e3vhv9.js";
|
|
41
41
|
import"./index-k5jrywpr.js";
|
|
42
42
|
import"./index-n832052r.js";
|
|
43
|
-
import"./index-
|
|
43
|
+
import"./index-y2esw64s.js";
|
|
44
44
|
import"./index-bk5tah7q.js";
|
|
45
45
|
import"./index-8fwhhayc.js";
|
|
46
46
|
import"./index-q1exe2b3.js";
|
|
@@ -150,7 +150,7 @@ async function runDeterministicDriftCheck(directory, phase, curatorResult, confi
|
|
|
150
150
|
});
|
|
151
151
|
if (injectAdvisory && alignment !== "ALIGNED" && driftScore > 0) {
|
|
152
152
|
try {
|
|
153
|
-
const advisoryText = `CURATOR DRIFT DETECTED (phase ${phase}, score ${driftScore.toFixed(2)}): ${injectionSummary.slice(0, 300)}. Review .swarm/${DRIFT_REPORT_PREFIX}${phase}.json and address spec alignment before proceeding.`;
|
|
153
|
+
const advisoryText = `CURATOR DRIFT DETECTED (phase ${phase}, score ${driftScore.toFixed(2)}): ${injectionSummary.slice(0, 300)}. Review .swarm/${DRIFT_REPORT_PREFIX}${phase}.json and address spec alignment before proceeding. Consider running critic_drift_verifier before phase completion to get a proper drift review.`;
|
|
154
154
|
injectAdvisory(advisoryText);
|
|
155
155
|
} catch {}
|
|
156
156
|
}
|
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
import {
|
|
3
3
|
createCuratorLLMDelegate
|
|
4
|
-
} from "./index-
|
|
4
|
+
} from "./index-358f9h8p.js";
|
|
5
5
|
import"./index-13xxjfhn.js";
|
|
6
|
-
import"./index-
|
|
7
|
-
import"./index-
|
|
6
|
+
import"./index-1v5mby7t.js";
|
|
7
|
+
import"./index-bq2848a3.js";
|
|
8
8
|
import"./index-k742ecbm.js";
|
|
9
9
|
import"./index-4905hd2m.js";
|
|
10
10
|
import"./index-134d35c1.js";
|
|
11
|
-
import"./index-
|
|
12
|
-
import"./index-
|
|
13
|
-
import"./index-
|
|
11
|
+
import"./index-m8ajf6wb.js";
|
|
12
|
+
import"./index-kwm7hz18.js";
|
|
13
|
+
import"./index-0541h76w.js";
|
|
14
14
|
import"./index-vxv732ex.js";
|
|
15
15
|
import"./index-c8s9a3zh.js";
|
|
16
16
|
import"./index-9ss2m4rs.js";
|
|
17
17
|
import"./index-wk1h5ec2.js";
|
|
18
18
|
import"./index-1j3682j8.js";
|
|
19
|
-
import"./index-
|
|
20
|
-
import"./index-
|
|
19
|
+
import"./index-6b69mp0r.js";
|
|
20
|
+
import"./index-zjw32rv9.js";
|
|
21
21
|
import"./index-rtry5xyf.js";
|
|
22
|
-
import"./index-
|
|
23
|
-
import"./index-
|
|
22
|
+
import"./index-2j8f71c3.js";
|
|
23
|
+
import"./index-8t9xpn1a.js";
|
|
24
24
|
import"./index-ae75rja9.js";
|
|
25
25
|
import"./index-cfkvc5q9.js";
|
|
26
26
|
import"./index-dd7ttx8x.js";
|
|
27
|
-
import"./index-
|
|
27
|
+
import"./index-c0e3vhv9.js";
|
|
28
28
|
import"./index-k5jrywpr.js";
|
|
29
29
|
import"./index-n832052r.js";
|
|
30
|
-
import"./index-
|
|
30
|
+
import"./index-y2esw64s.js";
|
|
31
31
|
import"./index-bk5tah7q.js";
|
|
32
32
|
import"./index-8fwhhayc.js";
|
|
33
33
|
import"./index-q1exe2b3.js";
|
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
import {
|
|
3
3
|
handleGuardrailExplain
|
|
4
|
-
} from "./index-
|
|
5
|
-
import"./index-
|
|
4
|
+
} from "./index-pz49rx4y.js";
|
|
5
|
+
import"./index-358f9h8p.js";
|
|
6
6
|
import"./index-13xxjfhn.js";
|
|
7
|
-
import"./index-
|
|
8
|
-
import"./index-
|
|
7
|
+
import"./index-1v5mby7t.js";
|
|
8
|
+
import"./index-bq2848a3.js";
|
|
9
9
|
import"./index-k742ecbm.js";
|
|
10
10
|
import"./index-4905hd2m.js";
|
|
11
11
|
import"./index-134d35c1.js";
|
|
12
|
-
import"./index-
|
|
13
|
-
import"./index-
|
|
14
|
-
import"./index-
|
|
12
|
+
import"./index-m8ajf6wb.js";
|
|
13
|
+
import"./index-kwm7hz18.js";
|
|
14
|
+
import"./index-0541h76w.js";
|
|
15
15
|
import"./index-vxv732ex.js";
|
|
16
16
|
import"./index-c8s9a3zh.js";
|
|
17
17
|
import"./index-9ss2m4rs.js";
|
|
18
18
|
import"./index-wk1h5ec2.js";
|
|
19
19
|
import"./index-1j3682j8.js";
|
|
20
|
-
import"./index-
|
|
21
|
-
import"./index-
|
|
20
|
+
import"./index-6b69mp0r.js";
|
|
21
|
+
import"./index-zjw32rv9.js";
|
|
22
22
|
import"./index-rtry5xyf.js";
|
|
23
|
-
import"./index-
|
|
24
|
-
import"./index-
|
|
23
|
+
import"./index-2j8f71c3.js";
|
|
24
|
+
import"./index-8t9xpn1a.js";
|
|
25
25
|
import"./index-ae75rja9.js";
|
|
26
26
|
import"./index-cfkvc5q9.js";
|
|
27
27
|
import"./index-dd7ttx8x.js";
|
|
28
|
-
import"./index-
|
|
28
|
+
import"./index-c0e3vhv9.js";
|
|
29
29
|
import"./index-k5jrywpr.js";
|
|
30
30
|
import"./index-n832052r.js";
|
|
31
|
-
import"./index-
|
|
31
|
+
import"./index-y2esw64s.js";
|
|
32
32
|
import"./index-bk5tah7q.js";
|
|
33
33
|
import"./index-8fwhhayc.js";
|
|
34
34
|
import"./index-q1exe2b3.js";
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
import {
|
|
3
3
|
handleGuardrailLog
|
|
4
|
-
} from "./index-
|
|
5
|
-
import"./index-
|
|
6
|
-
import"./index-
|
|
4
|
+
} from "./index-9z1q181f.js";
|
|
5
|
+
import"./index-1v5mby7t.js";
|
|
6
|
+
import"./index-y2esw64s.js";
|
|
7
7
|
import"./index-bk5tah7q.js";
|
|
8
8
|
import"./index-bpmtbmy9.js";
|
|
9
9
|
import"./index-z6xqpmqg.js";
|
|
@@ -7,35 +7,35 @@ import {
|
|
|
7
7
|
isHiveEligible,
|
|
8
8
|
promoteFromSwarm,
|
|
9
9
|
promoteToHive
|
|
10
|
-
} from "./index-
|
|
10
|
+
} from "./index-358f9h8p.js";
|
|
11
11
|
import"./index-13xxjfhn.js";
|
|
12
|
-
import"./index-
|
|
13
|
-
import"./index-
|
|
12
|
+
import"./index-1v5mby7t.js";
|
|
13
|
+
import"./index-bq2848a3.js";
|
|
14
14
|
import"./index-k742ecbm.js";
|
|
15
15
|
import"./index-4905hd2m.js";
|
|
16
16
|
import"./index-134d35c1.js";
|
|
17
|
-
import"./index-
|
|
18
|
-
import"./index-
|
|
19
|
-
import"./index-
|
|
17
|
+
import"./index-m8ajf6wb.js";
|
|
18
|
+
import"./index-kwm7hz18.js";
|
|
19
|
+
import"./index-0541h76w.js";
|
|
20
20
|
import"./index-vxv732ex.js";
|
|
21
21
|
import"./index-c8s9a3zh.js";
|
|
22
22
|
import"./index-9ss2m4rs.js";
|
|
23
23
|
import"./index-wk1h5ec2.js";
|
|
24
24
|
import"./index-1j3682j8.js";
|
|
25
|
-
import"./index-
|
|
26
|
-
import"./index-
|
|
25
|
+
import"./index-6b69mp0r.js";
|
|
26
|
+
import"./index-zjw32rv9.js";
|
|
27
27
|
import"./index-rtry5xyf.js";
|
|
28
28
|
import {
|
|
29
29
|
resolveHiveKnowledgePath
|
|
30
|
-
} from "./index-
|
|
31
|
-
import"./index-
|
|
30
|
+
} from "./index-2j8f71c3.js";
|
|
31
|
+
import"./index-8t9xpn1a.js";
|
|
32
32
|
import"./index-ae75rja9.js";
|
|
33
33
|
import"./index-cfkvc5q9.js";
|
|
34
34
|
import"./index-dd7ttx8x.js";
|
|
35
|
-
import"./index-
|
|
35
|
+
import"./index-c0e3vhv9.js";
|
|
36
36
|
import"./index-k5jrywpr.js";
|
|
37
37
|
import"./index-n832052r.js";
|
|
38
|
-
import"./index-
|
|
38
|
+
import"./index-y2esw64s.js";
|
|
39
39
|
import"./index-bk5tah7q.js";
|
|
40
40
|
import"./index-8fwhhayc.js";
|
|
41
41
|
import"./index-q1exe2b3.js";
|
|
@@ -702,7 +702,7 @@ async function applyConfidenceFloorAction(directory, touched, options) {
|
|
|
702
702
|
const recovered = touched.filter((e) => e.confidence > CONFIDENCE_FLOOR + FLOOR_EPSILON && e.confidence_floor_demoted);
|
|
703
703
|
if (atFloor.length === 0 && recovered.length === 0)
|
|
704
704
|
return;
|
|
705
|
-
const { readKnowledgeCounterRollups, effectiveRetrievalOutcomes } = await import("./knowledge-events-
|
|
705
|
+
const { readKnowledgeCounterRollups, effectiveRetrievalOutcomes } = await import("./knowledge-events-qp19r2he.js");
|
|
706
706
|
const rollups = await readKnowledgeCounterRollups(directory);
|
|
707
707
|
const flagIds = new Set;
|
|
708
708
|
for (const e of atFloor) {
|
|
@@ -769,11 +769,11 @@ async function applyConfidenceFloorAction(directory, touched, options) {
|
|
|
769
769
|
});
|
|
770
770
|
}
|
|
771
771
|
if (action === "quarantine" && toQuarantine.length > 0) {
|
|
772
|
-
const { quarantineEntry } = await import("./knowledge-validator-
|
|
773
|
-
const { KnowledgeConfigSchema } = await import("./schema-
|
|
772
|
+
const { quarantineEntry } = await import("./knowledge-validator-qg31ycbb.js");
|
|
773
|
+
const { KnowledgeConfigSchema } = await import("./schema-erk5bz43.js");
|
|
774
774
|
let config;
|
|
775
775
|
try {
|
|
776
|
-
const { loadPluginConfigWithMeta } = await import("./index-
|
|
776
|
+
const { loadPluginConfigWithMeta } = await import("./index-463k8mfr.js");
|
|
777
777
|
const { config: loadedConfig } = loadPluginConfigWithMeta(directory);
|
|
778
778
|
config = KnowledgeConfigSchema.parse(loadedConfig.knowledge ?? {});
|
|
779
779
|
} catch {
|