opencode-swarm 7.137.3 → 7.137.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.
Files changed (36) hide show
  1. package/.opencode/skills/test-file-split/SKILL.md +2 -2
  2. package/.opencode/skills/writing-tests/SKILL.md +15 -1
  3. package/dist/cli/{config-doctor-t560ks5q.js → config-doctor-5qymy0bp.js} +2 -2
  4. package/dist/cli/{curation-policy-r1ddgn8c.js → curation-policy-788qbgwk.js} +2 -2
  5. package/dist/cli/{curator-zcg176y4.js → curator-0zebvv5q.js} +12 -12
  6. package/dist/cli/{curator-llm-factory-ny0hcz11.js → curator-llm-factory-6w7hpfb0.js} +12 -12
  7. package/dist/cli/{guardrail-explain-wmc2c89t.js → guardrail-explain-k1a7mwq9.js} +13 -13
  8. package/dist/cli/{guardrail-log-m7th4yac.js → guardrail-log-wqsg11xd.js} +3 -3
  9. package/dist/cli/{hive-promoter-m9fbm8hg.js → hive-promoter-kxcm4n0n.js} +12 -12
  10. package/dist/cli/{index-d39q5r1s.js → index-01dpavd4.js} +1 -1
  11. package/dist/cli/{index-j215fc3r.js → index-2qr7twf5.js} +3 -3
  12. package/dist/cli/{index-amf649jq.js → index-b2khb7xx.js} +4 -4
  13. package/dist/cli/{index-kbksjvte.js → index-b9pgq0fk.js} +5 -5
  14. package/dist/cli/{index-cqsxdb6f.js → index-bma4nwts.js} +1 -1
  15. package/dist/cli/{index-e1xt3r6c.js → index-csneb2ph.js} +2 -2
  16. package/dist/cli/{index-2xvtskcg.js → index-eq564d4t.js} +1 -1
  17. package/dist/cli/{index-9b1vtdpm.js → index-fetnv58w.js} +2 -2
  18. package/dist/cli/{index-hsc81cfm.js → index-h353c1xz.js} +1 -1
  19. package/dist/cli/{index-es88kmrz.js → index-m09k3dpz.js} +1 -1
  20. package/dist/cli/{index-ab7p3gq6.js → index-mrwr3kac.js} +2 -2
  21. package/dist/cli/{index-897js8x8.js → index-nnf41ca1.js} +36 -36
  22. package/dist/cli/{index-3zj70fr9.js → index-p9shqpbc.js} +1 -1
  23. package/dist/cli/{index-ryw98ynn.js → index-pzkn7d2k.js} +4 -2
  24. package/dist/cli/{index-dkzct23a.js → index-q9eqty52.js} +1 -1
  25. package/dist/cli/{index-ky1kr5my.js → index-rdg1tkz4.js} +14 -14
  26. package/dist/cli/index.js +12 -12
  27. package/dist/cli/{knowledge-escalator-6bw0gxkh.js → knowledge-escalator-dna6s7qy.js} +3 -3
  28. package/dist/cli/{knowledge-events-cdwbxkr2.js → knowledge-events-shy8wgb3.js} +1 -1
  29. package/dist/cli/{knowledge-store-5y46n3as.js → knowledge-store-j7xtx4dd.js} +1 -1
  30. package/dist/cli/{knowledge-validator-bekm8t70.js → knowledge-validator-zfweje73.js} +4 -4
  31. package/dist/cli/{scan-cursor-jqwzvkw9.js → scan-cursor-fessrenj.js} +2 -2
  32. package/dist/cli/{schema-zgrd42bf.js → schema-36b6sv6b.js} +1 -1
  33. package/dist/cli/{skill-generator-q1jh5agj.js → skill-generator-0ghcwxeb.js} +5 -5
  34. package/dist/context/role-filter.d.ts +21 -2
  35. package/dist/index.js +122 -121
  36. package/package.json +4 -2
@@ -1,12 +1,12 @@
1
1
  ---
2
2
  name: test-file-split
3
3
  audience: swarm-plugin
4
- description: Protocol for splitting test files that approach or exceed the FR-006 500-line limit (enforced in CI by scripts/check-test-file-cap.sh as a diff-scoped ratchet). Covers describe-block extraction, shared helper management, pure-function extraction, mock isolation verification, and cascading-split detection. Load when a test file approaches or exceeds 500 lines.
4
+ description: Protocol for splitting test files that approach or exceed the FR-006 500-line limit (enforced in CI by scripts/check-test-file-cap.ts as a diff-scoped ratchet). Covers describe-block extraction, shared helper management, pure-function extraction, mock isolation verification, and cascading-split detection. Load when a test file approaches or exceeds 500 lines.
5
5
  ---
6
6
 
7
7
  # Test File Split Protocol (FR-006)
8
8
 
9
- `scripts/check-test-file-cap.sh` enforces the **500-line cap** per test file (FR-006 / SC-006.1) as a **diff-scoped ratchet**: new test files over 500 lines and existing over-cap files that grew fail the quality gate and block PR merge. Pre-existing over-cap files not touched by the PR are non-blocking. Escape hatch: `TEST_CAP_ENFORCE=0` soft-warns. This skill covers the complete splitting protocol.
9
+ `scripts/check-test-file-cap.ts` enforces the **500-line cap** per test file (FR-006 / SC-006.1) as a **diff-scoped ratchet**: new test files over 500 lines and existing over-cap files that grew fail the quality gate and block PR merge. Pre-existing over-cap files not touched by the PR are non-blocking. Escape hatch: `TEST_CAP_ENFORCE=0` soft-warns. This skill covers the complete splitting protocol.
10
10
 
11
11
  Read first: `.opencode/skills/writing-tests/SKILL.md` (or `.claude/skills/writing-tests/SKILL.md`) for bun:test framework rules, mock isolation patterns, and file placement conventions.
12
12
 
@@ -615,7 +615,21 @@ authority checks:
615
615
 
616
616
  ## FR-006: Test File Size Limit (500 lines)
617
617
 
618
- `scripts/check-test-file-cap.sh` enforces the **500-line cap** per test file (FR-006) as a **diff-scoped ratchet**: new test files over 500 lines and existing over-cap files that grew fail the quality gate and block PR merge. Pre-existing over-cap files not touched by the PR are non-blocking. Escape hatch: `TEST_CAP_ENFORCE=0` soft-warns (use only for a deliberate growth PR).
618
+ `scripts/check-test-file-cap.ts` enforces the **500-line cap** per test file (FR-006) as a **diff-scoped ratchet**: new test files over 500 lines and existing over-cap files that grew fail the quality gate and block PR merge. Pre-existing over-cap files not touched by the PR are non-blocking. Escape hatch: `TEST_CAP_ENFORCE=0` soft-warns (use only for a deliberate growth PR).
619
+
620
+ ### Local validation (all platforms, including Windows)
621
+
622
+ Run the **identical** gate CI runs — no Bash required (issue #2078):
623
+
624
+ ```
625
+ bun run check:test-file-cap
626
+ ```
627
+
628
+ - Works in Windows PowerShell, macOS, and Linux; `scripts/check-test-file-cap.sh` is a zero-logic shim that `exec`s the same TypeScript file, so the two entry points cannot report different results.
629
+ - The gate is **diff-scoped**: it compares your branch against the first of `origin/main`, `origin/master`, `main`, `master` that resolves. Run `git fetch origin main` first — a stale or missing base makes the comparison stale, and with **no** base branch resolvable the gate has nothing to compare and reports zero violations (a vacuous pass, not a real one). A branch that is *behind* its base is the other stale-base trap: the diff then contains the base's own commits in reverse, so counts are meaningless until you rebase.
630
+ - Directory-independent: the gate resolves the repository root itself, so running it from a subdirectory gives the same result as running it from the root.
631
+ - Exit `1` means a violation and enforcement is on; exit `0` with printed `ERROR` lines means you set `TEST_CAP_ENFORCE=0` (soft-warn). Verify the summary counters, not just the exit code.
632
+ - The gate reads files **from the working tree** but takes the changed-file list from `<base>..HEAD`, so a new over-cap test file that is not yet committed is invisible to it. Commit before trusting a green run.
619
633
 
620
634
  For the full splitting protocol (describe-block extraction, shared helper management, pure-function extraction, mock isolation verification, cascading-split detection), read `file:.swarm/bundled-skills/test-file-split/SKILL.md`.
621
635
 
@@ -12,8 +12,8 @@ import {
12
12
  shouldRunOnStartup,
13
13
  writeBackupArtifact,
14
14
  writeDoctorArtifact
15
- } from "./index-dkzct23a.js";
16
- import"./index-ryw98ynn.js";
15
+ } from "./index-q9eqty52.js";
16
+ import"./index-pzkn7d2k.js";
17
17
  import"./index-bk5tah7q.js";
18
18
  import"./index-3jcyn8g6.js";
19
19
  import"./index-bpmtbmy9.js";
@@ -4,9 +4,9 @@ import {
4
4
  authorizeCuration,
5
5
  buildConfigFingerprintInput,
6
6
  readCohortConfigFingerprint
7
- } from "./index-d39q5r1s.js";
7
+ } from "./index-01dpavd4.js";
8
8
  import"./index-rtry5xyf.js";
9
- import"./index-cqsxdb6f.js";
9
+ import"./index-bma4nwts.js";
10
10
  import"./index-ae75rja9.js";
11
11
  import"./index-en4fb04r.js";
12
12
  import"./index-tqshdzaw.js";
@@ -14,36 +14,36 @@ import {
14
14
  runCuratorInit,
15
15
  runCuratorPhase,
16
16
  writeCuratorSummary
17
- } from "./index-897js8x8.js";
17
+ } from "./index-nnf41ca1.js";
18
18
  import"./index-vm4xw9z3.js";
19
19
  import"./index-rrxcfxrd.js";
20
- import"./index-es88kmrz.js";
21
- import"./index-dkzct23a.js";
20
+ import"./index-m09k3dpz.js";
21
+ import"./index-q9eqty52.js";
22
22
  import"./index-fmh15wxb.js";
23
23
  import"./index-ngqxzkqm.js";
24
24
  import"./index-y8552snf.js";
25
25
  import"./index-4905hd2m.js";
26
26
  import"./index-134d35c1.js";
27
- import"./index-j215fc3r.js";
28
- import"./index-kbksjvte.js";
29
- import"./index-2xvtskcg.js";
27
+ import"./index-2qr7twf5.js";
28
+ import"./index-b9pgq0fk.js";
29
+ import"./index-eq564d4t.js";
30
30
  import"./index-6mjf4vr1.js";
31
31
  import"./index-c8s9a3zh.js";
32
32
  import"./index-9ss2m4rs.js";
33
33
  import"./index-wsdnttf4.js";
34
34
  import"./index-39k6y018.js";
35
- import"./index-9b1vtdpm.js";
36
- import"./index-d39q5r1s.js";
35
+ import"./index-fetnv58w.js";
36
+ import"./index-01dpavd4.js";
37
37
  import"./index-rtry5xyf.js";
38
- import"./index-amf649jq.js";
39
- import"./index-cqsxdb6f.js";
38
+ import"./index-b2khb7xx.js";
39
+ import"./index-bma4nwts.js";
40
40
  import"./index-ae75rja9.js";
41
41
  import"./index-en4fb04r.js";
42
42
  import"./index-tqshdzaw.js";
43
- import"./index-hsc81cfm.js";
43
+ import"./index-h353c1xz.js";
44
44
  import"./index-k5jrywpr.js";
45
45
  import"./index-n832052r.js";
46
- import"./index-ryw98ynn.js";
46
+ import"./index-pzkn7d2k.js";
47
47
  import"./index-bk5tah7q.js";
48
48
  import"./index-8fwhhayc.js";
49
49
  import"./index-q1exe2b3.js";
@@ -1,36 +1,36 @@
1
1
  // @bun
2
2
  import {
3
3
  createCuratorLLMDelegate
4
- } from "./index-897js8x8.js";
4
+ } from "./index-nnf41ca1.js";
5
5
  import"./index-vm4xw9z3.js";
6
6
  import"./index-rrxcfxrd.js";
7
- import"./index-es88kmrz.js";
8
- import"./index-dkzct23a.js";
7
+ import"./index-m09k3dpz.js";
8
+ import"./index-q9eqty52.js";
9
9
  import"./index-fmh15wxb.js";
10
10
  import"./index-ngqxzkqm.js";
11
11
  import"./index-y8552snf.js";
12
12
  import"./index-4905hd2m.js";
13
13
  import"./index-134d35c1.js";
14
- import"./index-j215fc3r.js";
15
- import"./index-kbksjvte.js";
16
- import"./index-2xvtskcg.js";
14
+ import"./index-2qr7twf5.js";
15
+ import"./index-b9pgq0fk.js";
16
+ import"./index-eq564d4t.js";
17
17
  import"./index-6mjf4vr1.js";
18
18
  import"./index-c8s9a3zh.js";
19
19
  import"./index-9ss2m4rs.js";
20
20
  import"./index-wsdnttf4.js";
21
21
  import"./index-39k6y018.js";
22
- import"./index-9b1vtdpm.js";
23
- import"./index-d39q5r1s.js";
22
+ import"./index-fetnv58w.js";
23
+ import"./index-01dpavd4.js";
24
24
  import"./index-rtry5xyf.js";
25
- import"./index-amf649jq.js";
26
- import"./index-cqsxdb6f.js";
25
+ import"./index-b2khb7xx.js";
26
+ import"./index-bma4nwts.js";
27
27
  import"./index-ae75rja9.js";
28
28
  import"./index-en4fb04r.js";
29
29
  import"./index-tqshdzaw.js";
30
- import"./index-hsc81cfm.js";
30
+ import"./index-h353c1xz.js";
31
31
  import"./index-k5jrywpr.js";
32
32
  import"./index-n832052r.js";
33
- import"./index-ryw98ynn.js";
33
+ import"./index-pzkn7d2k.js";
34
34
  import"./index-bk5tah7q.js";
35
35
  import"./index-8fwhhayc.js";
36
36
  import"./index-q1exe2b3.js";
@@ -1,37 +1,37 @@
1
1
  // @bun
2
2
  import {
3
3
  handleGuardrailExplain
4
- } from "./index-e1xt3r6c.js";
5
- import"./index-897js8x8.js";
4
+ } from "./index-csneb2ph.js";
5
+ import"./index-nnf41ca1.js";
6
6
  import"./index-vm4xw9z3.js";
7
7
  import"./index-rrxcfxrd.js";
8
- import"./index-es88kmrz.js";
9
- import"./index-dkzct23a.js";
8
+ import"./index-m09k3dpz.js";
9
+ import"./index-q9eqty52.js";
10
10
  import"./index-fmh15wxb.js";
11
11
  import"./index-ngqxzkqm.js";
12
12
  import"./index-y8552snf.js";
13
13
  import"./index-4905hd2m.js";
14
14
  import"./index-134d35c1.js";
15
- import"./index-j215fc3r.js";
16
- import"./index-kbksjvte.js";
17
- import"./index-2xvtskcg.js";
15
+ import"./index-2qr7twf5.js";
16
+ import"./index-b9pgq0fk.js";
17
+ import"./index-eq564d4t.js";
18
18
  import"./index-6mjf4vr1.js";
19
19
  import"./index-c8s9a3zh.js";
20
20
  import"./index-9ss2m4rs.js";
21
21
  import"./index-wsdnttf4.js";
22
22
  import"./index-39k6y018.js";
23
- import"./index-9b1vtdpm.js";
24
- import"./index-d39q5r1s.js";
23
+ import"./index-fetnv58w.js";
24
+ import"./index-01dpavd4.js";
25
25
  import"./index-rtry5xyf.js";
26
- import"./index-amf649jq.js";
27
- import"./index-cqsxdb6f.js";
26
+ import"./index-b2khb7xx.js";
27
+ import"./index-bma4nwts.js";
28
28
  import"./index-ae75rja9.js";
29
29
  import"./index-en4fb04r.js";
30
30
  import"./index-tqshdzaw.js";
31
- import"./index-hsc81cfm.js";
31
+ import"./index-h353c1xz.js";
32
32
  import"./index-k5jrywpr.js";
33
33
  import"./index-n832052r.js";
34
- import"./index-ryw98ynn.js";
34
+ import"./index-pzkn7d2k.js";
35
35
  import"./index-bk5tah7q.js";
36
36
  import"./index-8fwhhayc.js";
37
37
  import"./index-q1exe2b3.js";
@@ -1,9 +1,9 @@
1
1
  // @bun
2
2
  import {
3
3
  handleGuardrailLog
4
- } from "./index-3zj70fr9.js";
5
- import"./index-es88kmrz.js";
6
- import"./index-ryw98ynn.js";
4
+ } from "./index-p9shqpbc.js";
5
+ import"./index-m09k3dpz.js";
6
+ import"./index-pzkn7d2k.js";
7
7
  import"./index-bk5tah7q.js";
8
8
  import"./index-3jcyn8g6.js";
9
9
  import"./index-bpmtbmy9.js";
@@ -7,38 +7,38 @@ import {
7
7
  isHiveEligible,
8
8
  promoteFromSwarm,
9
9
  promoteToHive
10
- } from "./index-897js8x8.js";
10
+ } from "./index-nnf41ca1.js";
11
11
  import"./index-vm4xw9z3.js";
12
12
  import"./index-rrxcfxrd.js";
13
- import"./index-es88kmrz.js";
14
- import"./index-dkzct23a.js";
13
+ import"./index-m09k3dpz.js";
14
+ import"./index-q9eqty52.js";
15
15
  import"./index-fmh15wxb.js";
16
16
  import"./index-ngqxzkqm.js";
17
17
  import"./index-y8552snf.js";
18
18
  import"./index-4905hd2m.js";
19
19
  import"./index-134d35c1.js";
20
- import"./index-j215fc3r.js";
21
- import"./index-kbksjvte.js";
22
- import"./index-2xvtskcg.js";
20
+ import"./index-2qr7twf5.js";
21
+ import"./index-b9pgq0fk.js";
22
+ import"./index-eq564d4t.js";
23
23
  import"./index-6mjf4vr1.js";
24
24
  import"./index-c8s9a3zh.js";
25
25
  import"./index-9ss2m4rs.js";
26
26
  import"./index-wsdnttf4.js";
27
27
  import"./index-39k6y018.js";
28
- import"./index-9b1vtdpm.js";
29
- import"./index-d39q5r1s.js";
28
+ import"./index-fetnv58w.js";
29
+ import"./index-01dpavd4.js";
30
30
  import"./index-rtry5xyf.js";
31
31
  import {
32
32
  resolveHiveKnowledgePath
33
- } from "./index-amf649jq.js";
34
- import"./index-cqsxdb6f.js";
33
+ } from "./index-b2khb7xx.js";
34
+ import"./index-bma4nwts.js";
35
35
  import"./index-ae75rja9.js";
36
36
  import"./index-en4fb04r.js";
37
37
  import"./index-tqshdzaw.js";
38
- import"./index-hsc81cfm.js";
38
+ import"./index-h353c1xz.js";
39
39
  import"./index-k5jrywpr.js";
40
40
  import"./index-n832052r.js";
41
- import"./index-ryw98ynn.js";
41
+ import"./index-pzkn7d2k.js";
42
42
  import"./index-bk5tah7q.js";
43
43
  import"./index-8fwhhayc.js";
44
44
  import"./index-q1exe2b3.js";
@@ -4,7 +4,7 @@ import {
4
4
  } from "./index-rtry5xyf.js";
5
5
  import {
6
6
  readKnowledgeEvents
7
- } from "./index-cqsxdb6f.js";
7
+ } from "./index-bma4nwts.js";
8
8
  import {
9
9
  isLinked,
10
10
  readLinkPointer,
@@ -2,18 +2,18 @@
2
2
  import {
3
3
  ALLOWED_SKILL_PATH_PREFIXES,
4
4
  validateSkillPath
5
- } from "./index-9b1vtdpm.js";
5
+ } from "./index-fetnv58w.js";
6
6
  import {
7
7
  computeOutcomeSignal,
8
8
  readKnowledge,
9
9
  resolveHiveKnowledgePath,
10
10
  resolveSwarmKnowledgePath,
11
11
  transactKnowledge
12
- } from "./index-amf649jq.js";
12
+ } from "./index-b2khb7xx.js";
13
13
  import {
14
14
  effectiveRetrievalOutcomes,
15
15
  readKnowledgeCounterRollups
16
- } from "./index-cqsxdb6f.js";
16
+ } from "./index-bma4nwts.js";
17
17
  import {
18
18
  init_knowledge_types,
19
19
  isActiveStatus
@@ -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-cdwbxkr2.js");
705
+ const { readKnowledgeCounterRollups, effectiveRetrievalOutcomes } = await import("./knowledge-events-shy8wgb3.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-bekm8t70.js");
773
- const { KnowledgeConfigSchema } = await import("./schema-zgrd42bf.js");
772
+ const { quarantineEntry } = await import("./knowledge-validator-zfweje73.js");
773
+ const { KnowledgeConfigSchema } = await import("./schema-36b6sv6b.js");
774
774
  let config;
775
775
  try {
776
- const { loadPluginConfigWithMeta } = await import("./index-ab7p3gq6.js");
776
+ const { loadPluginConfigWithMeta } = await import("./index-mrwr3kac.js");
777
777
  const { config: loadedConfig } = loadPluginConfigWithMeta(directory);
778
778
  config = KnowledgeConfigSchema.parse(loadedConfig.knowledge ?? {});
779
779
  } catch {
@@ -6,13 +6,13 @@ import {
6
6
  resolveSwarmKnowledgePath,
7
7
  transactKnowledge,
8
8
  wordBigrams
9
- } from "./index-amf649jq.js";
9
+ } from "./index-b2khb7xx.js";
10
10
  import {
11
11
  countEntryContradictionsInWindow,
12
12
  countEntryViolationsInWindow,
13
13
  readKnowledgeEvents,
14
14
  recordKnowledgeEvent
15
- } from "./index-cqsxdb6f.js";
15
+ } from "./index-bma4nwts.js";
16
16
  import {
17
17
  init_knowledge_types,
18
18
  isActiveStatus
@@ -190,11 +190,11 @@ async function maybeQuarantineOnContradiction(directory, entryId, threshold, win
190
190
  alreadyInactive: true
191
191
  };
192
192
  }
193
- const { quarantineEntry } = await import("./knowledge-validator-bekm8t70.js");
193
+ const { quarantineEntry } = await import("./knowledge-validator-zfweje73.js");
194
194
  let policyConfig;
195
195
  try {
196
- const { KnowledgeConfigSchema } = await import("./schema-zgrd42bf.js");
197
- const { loadPluginConfigWithMeta } = await import("./index-ab7p3gq6.js");
196
+ const { KnowledgeConfigSchema } = await import("./schema-36b6sv6b.js");
197
+ const { loadPluginConfigWithMeta } = await import("./index-mrwr3kac.js");
198
198
  const { config: loadedConfig } = loadPluginConfigWithMeta(directory);
199
199
  policyConfig = KnowledgeConfigSchema.parse(loadedConfig.knowledge ?? {});
200
200
  } catch {
@@ -625,7 +625,7 @@ async function applyKnowledgeVerdictFeedback(directory, options) {
625
625
  deltas.push({ id, delta });
626
626
  }
627
627
  if (deltas.length > 0) {
628
- const { bumpKnowledgeConfidenceBatch } = await import("./knowledge-store-5y46n3as.js");
628
+ const { bumpKnowledgeConfidenceBatch } = await import("./knowledge-store-j7xtx4dd.js");
629
629
  await bumpKnowledgeConfidenceBatch(directory, deltas, options?.floorOptions);
630
630
  }
631
631
  return {
@@ -12,14 +12,14 @@ import {
12
12
  detectPosixWrites,
13
13
  detectWindowsWrites,
14
14
  resolveWriteTargets
15
- } from "./index-897js8x8.js";
15
+ } from "./index-nnf41ca1.js";
16
16
  import {
17
17
  checkFileAuthority,
18
18
  classifyFile,
19
19
  isInDeclaredScope,
20
20
  redactPath,
21
21
  redactShellCommand
22
- } from "./index-es88kmrz.js";
22
+ } from "./index-m09k3dpz.js";
23
23
 
24
24
  // src/services/guardrail-explain-service.ts
25
25
  import path from "path";
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  readKnowledge,
4
4
  transactKnowledge
5
- } from "./index-amf649jq.js";
5
+ } from "./index-b2khb7xx.js";
6
6
  import {
7
7
  resolveKnowledgeStoreDir
8
8
  } from "./index-en4fb04r.js";
@@ -1,7 +1,7 @@
1
1
  // @bun
2
2
  import {
3
3
  authorizeCuration
4
- } from "./index-d39q5r1s.js";
4
+ } from "./index-01dpavd4.js";
5
5
  import {
6
6
  findNearDuplicate,
7
7
  inferTags,
@@ -9,7 +9,7 @@ import {
9
9
  resolveSwarmKnowledgePath,
10
10
  resolveSwarmRejectedPath,
11
11
  transactKnowledge
12
- } from "./index-amf649jq.js";
12
+ } from "./index-b2khb7xx.js";
13
13
  import {
14
14
  resolveKnowledgeStoreDir
15
15
  } from "./index-en4fb04r.js";
@@ -6,7 +6,7 @@ import {
6
6
  PluginConfigSchema,
7
7
  init_schema,
8
8
  resolveExternalSkillsConfig
9
- } from "./index-ryw98ynn.js";
9
+ } from "./index-pzkn7d2k.js";
10
10
  import {
11
11
  advisoryWarn,
12
12
  init_warning_buffer
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  init_schema,
4
4
  stripKnownSwarmPrefix
5
- } from "./index-ryw98ynn.js";
5
+ } from "./index-pzkn7d2k.js";
6
6
  import {
7
7
  init_constants
8
8
  } from "./index-3jcyn8g6.js";
@@ -7,7 +7,7 @@ import {
7
7
  loadPluginConfigWithMeta,
8
8
  loadPluginConfigWithMetaAsync,
9
9
  resolveWorktreeIsolationConfig
10
- } from "./index-hsc81cfm.js";
10
+ } from "./index-h353c1xz.js";
11
11
  import {
12
12
  ApprovalEvidenceSchema,
13
13
  BaseEvidenceSchema,
@@ -54,7 +54,7 @@ import {
54
54
  TurboConfigSchema,
55
55
  WorktreeIsolationConfigSchema,
56
56
  resolveAutoReviewConfig
57
- } from "./index-ryw98ynn.js";
57
+ } from "./index-pzkn7d2k.js";
58
58
  import"./index-bk5tah7q.js";
59
59
  import {
60
60
  MigrationStatusSchema,