opencode-swarm 7.141.0 → 7.141.2

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 (44) hide show
  1. package/dist/cli/{config-doctor-ayer8jwj.js → config-doctor-weqs97sa.js} +2 -2
  2. package/dist/cli/{core-yep18rkf.js → core-zg7fqfsm.js} +1 -1
  3. package/dist/cli/{curator-llm-factory-b1wtbwwv.js → curator-llm-factory-8p86mgye.js} +17 -17
  4. package/dist/cli/{curator-fkwhph34.js → curator-v1tnrt93.js} +17 -17
  5. package/dist/cli/{dispatch-y8rergph.js → dispatch-rd10kdk1.js} +1 -1
  6. package/dist/cli/{evidence-summary-service-8e6594tg.js → evidence-summary-service-a4w0yc8h.js} +4 -4
  7. package/dist/cli/{guardrail-explain-fhx1kft6.js → guardrail-explain-8yrznk98.js} +18 -18
  8. package/dist/cli/{guardrail-log-x94s1jh9.js → guardrail-log-7hj4x9yt.js} +3 -3
  9. package/dist/cli/{hive-promoter-3ay1hffy.js → hive-promoter-6zcnyh1j.js} +17 -17
  10. package/dist/cli/{index-w95sxwfr.js → index-6bp1jecx.js} +1 -1
  11. package/dist/cli/{index-nk2ma3mh.js → index-73sxchez.js} +134 -72
  12. package/dist/cli/{index-acpsb3g1.js → index-76651erq.js} +3 -3
  13. package/dist/cli/{index-x5kk9gyk.js → index-aqzvjhb7.js} +5 -5
  14. package/dist/cli/{index-xcqst95a.js → index-bxjhn3t3.js} +1 -1
  15. package/dist/cli/{index-ays8g6cm.js → index-ebwznsfy.js} +54 -14
  16. package/dist/cli/{index-fcsf8vjm.js → index-h3vk67wp.js} +3 -3
  17. package/dist/cli/{index-b9mwe99e.js → index-hwxcdrv9.js} +4 -4
  18. package/dist/cli/{index-nkr3j0j1.js → index-jpt07f2k.js} +2 -2
  19. package/dist/cli/{index-pkby67j3.js → index-kkn2jxda.js} +1 -1
  20. package/dist/cli/{index-g4w73p1v.js → index-mqqmant3.js} +1 -1
  21. package/dist/cli/{index-rx33k785.js → index-mxtt4x8r.js} +1 -1
  22. package/dist/cli/{index-ytnm84ed.js → index-p5y72gtj.js} +3 -3
  23. package/dist/cli/{index-10zsx1x2.js → index-qa50yyeh.js} +1 -1
  24. package/dist/cli/{index-1dwa96x7.js → index-r6pdts5c.js} +2 -2
  25. package/dist/cli/{index-sd1w4pya.js → index-szrcxvr7.js} +2 -2
  26. package/dist/cli/{index-h375yxj5.js → index-vts5e84g.js} +19 -19
  27. package/dist/cli/{index-awwqa1f5.js → index-why8n7cr.js} +2 -2
  28. package/dist/cli/{index-m54erqap.js → index-xx0q37xb.js} +1 -1
  29. package/dist/cli/{index-fckf6g01.js → index-y6k6x197.js} +1 -1
  30. package/dist/cli/{index-9snyxgtf.js → index-zf5nkkdd.js} +1 -1
  31. package/dist/cli/index.js +17 -17
  32. package/dist/cli/{knowledge-escalator-53m3sh8p.js → knowledge-escalator-xjkbek46.js} +6 -6
  33. package/dist/cli/{knowledge-events-s5pmx5h3.js → knowledge-events-hsdx5prn.js} +4 -4
  34. package/dist/cli/{knowledge-store-dv70gxxc.js → knowledge-store-vt059r81.js} +1 -1
  35. package/dist/cli/{knowledge-validator-je30smbr.js → knowledge-validator-jr5694jb.js} +2 -2
  36. package/dist/cli/{scan-cursor-tcdcjbp9.js → scan-cursor-6nrkcfbr.js} +2 -2
  37. package/dist/cli/{schema-6cg2smxx.js → schema-f6pt0zjy.js} +1 -1
  38. package/dist/cli/{scope-persistence-v51d74j2.js → scope-persistence-jc0mtp7g.js} +4 -4
  39. package/dist/cli/{skill-generator-7kp8s0ne.js → skill-generator-4vp33gjb.js} +7 -7
  40. package/dist/cli/{worktree-isolation-g6t99t0x.js → worktree-isolation-a3hkz665.js} +17 -17
  41. package/dist/index.js +12 -12
  42. package/dist/lang/backend.d.ts +1 -0
  43. package/dist/tools/test-runner.d.ts +3 -2
  44. package/package.json +1 -1
@@ -13987,6 +13987,7 @@ function defaultBuildTestCommand(profile, framework, files, dir = ".", opts = {}
13987
13987
  const scope = opts.scope ?? "all";
13988
13988
  const coverage = opts.coverage ?? false;
13989
13989
  const bail = opts.bail ?? false;
13990
+ const targets = opts.targets;
13990
13991
  const nativeTarget = opts.nativeTarget;
13991
13992
  if (nativeTarget) {
13992
13993
  if (nativeTarget.framework !== framework)
@@ -14052,8 +14053,11 @@ function defaultBuildTestCommand(profile, framework, files, dir = ".", opts = {}
14052
14053
  }
14053
14054
  case "cargo": {
14054
14055
  const args = ["cargo", "test"];
14055
- if (scope !== "all" && files.length > 0)
14056
+ if (targets && targets.length > 0) {
14057
+ args.push("--", ...targets);
14058
+ } else if (scope !== "all" && files.length > 0) {
14056
14059
  args.push(...files);
14060
+ }
14057
14061
  return args;
14058
14062
  }
14059
14063
  case "pester": {
@@ -14066,22 +14070,47 @@ function defaultBuildTestCommand(profile, framework, files, dir = ".", opts = {}
14066
14070
  }
14067
14071
  return ["pwsh", "-Command", "Invoke-Pester"];
14068
14072
  }
14069
- case "go-test":
14070
- return ["go", "test", "./..."];
14071
- case "maven":
14072
- return ["mvn", "test"];
14073
+ case "go-test": {
14074
+ const args = ["go", "test"];
14075
+ if (targets && targets.length > 0) {
14076
+ args.push("-run", targets.join("|"));
14077
+ }
14078
+ args.push("./...");
14079
+ return args;
14080
+ }
14081
+ case "maven": {
14082
+ const args = ["mvn", "test"];
14083
+ if (targets && targets.length > 0) {
14084
+ args.push(`-Dtest=${targets.join(",")}`);
14085
+ }
14086
+ return args;
14087
+ }
14073
14088
  case "gradle": {
14074
14089
  const isWindows = process.platform === "win32";
14075
14090
  const hasGradlewBat = fs2.existsSync(path2.join(dir, "gradlew.bat"));
14076
14091
  const hasGradlew = fs2.existsSync(path2.join(dir, "gradlew"));
14092
+ const args = [];
14077
14093
  if (hasGradlewBat && isWindows)
14078
- return ["gradlew.bat", "test"];
14079
- if (hasGradlew)
14080
- return ["./gradlew", "test"];
14081
- return ["gradle", "test"];
14094
+ args.push("gradlew.bat");
14095
+ else if (hasGradlew)
14096
+ args.push("./gradlew");
14097
+ else
14098
+ args.push("gradle");
14099
+ args.push("test");
14100
+ if (targets && targets.length > 0) {
14101
+ for (const target of targets) {
14102
+ args.push("--tests", target);
14103
+ }
14104
+ }
14105
+ return args;
14106
+ }
14107
+ case "dotnet-test": {
14108
+ const args = ["dotnet", "test"];
14109
+ if (targets && targets.length > 0) {
14110
+ args.push("--filter", targets.join("|"));
14111
+ }
14112
+ return args;
14082
14113
  }
14083
- case "dotnet-test":
14084
- return ["dotnet", "test"];
14085
14114
  case "ctest": {
14086
14115
  const buildDirCandidates = [
14087
14116
  "build",
@@ -14091,10 +14120,21 @@ function defaultBuildTestCommand(profile, framework, files, dir = ".", opts = {}
14091
14120
  "out"
14092
14121
  ];
14093
14122
  const actualBuildDir = buildDirCandidates.find((d) => fs2.existsSync(path2.join(dir, d, "CMakeCache.txt"))) ?? "build";
14094
- return ["ctest", "--test-dir", actualBuildDir];
14123
+ const args = ["ctest", "--test-dir", actualBuildDir];
14124
+ if (targets && targets.length > 0) {
14125
+ args.push("-R", targets.join("|"));
14126
+ }
14127
+ return args;
14128
+ }
14129
+ case "swift-test": {
14130
+ const args = ["swift", "test"];
14131
+ if (targets && targets.length > 0) {
14132
+ for (const target of targets) {
14133
+ args.push("--filter", target);
14134
+ }
14135
+ }
14136
+ return args;
14095
14137
  }
14096
- case "swift-test":
14097
- return ["swift", "test"];
14098
14138
  case "dart-test":
14099
14139
  return isCommandAvailable("flutter") ? ["flutter", "test", ...files] : ["dart", "test", ...files];
14100
14140
  case "rspec": {
@@ -2,18 +2,18 @@
2
2
  import {
3
3
  effectiveRetrievalOutcomes,
4
4
  readAuthoritativeKnowledgeCounterRollups
5
- } from "./index-acpsb3g1.js";
5
+ } from "./index-76651erq.js";
6
6
  import {
7
7
  ALLOWED_SKILL_PATH_PREFIXES,
8
8
  validateSkillPath
9
- } from "./index-w95sxwfr.js";
9
+ } from "./index-6bp1jecx.js";
10
10
  import {
11
11
  computeOutcomeSignal,
12
12
  readKnowledge,
13
13
  resolveHiveKnowledgePath,
14
14
  resolveSwarmKnowledgePath,
15
15
  transactKnowledge
16
- } from "./index-b9mwe99e.js";
16
+ } from "./index-hwxcdrv9.js";
17
17
  import {
18
18
  advisoryWarn,
19
19
  init_warning_buffer
@@ -709,7 +709,7 @@ async function applyConfidenceFloorAction(directory, touched, options) {
709
709
  const {
710
710
  readAuthoritativeKnowledgeCounterRollups,
711
711
  effectiveRetrievalOutcomes
712
- } = await import("./knowledge-events-s5pmx5h3.js");
712
+ } = await import("./knowledge-events-hsdx5prn.js");
713
713
  const rollups = await readAuthoritativeKnowledgeCounterRollups(directory);
714
714
  const flagIds = new Set;
715
715
  for (const e of atFloor) {
@@ -776,11 +776,11 @@ async function applyConfidenceFloorAction(directory, touched, options) {
776
776
  });
777
777
  }
778
778
  if (action === "quarantine" && toQuarantine.length > 0) {
779
- const { quarantineEntry } = await import("./knowledge-validator-je30smbr.js");
780
- const { KnowledgeConfigSchema } = await import("./schema-6cg2smxx.js");
779
+ const { quarantineEntry } = await import("./knowledge-validator-jr5694jb.js");
780
+ const { KnowledgeConfigSchema } = await import("./schema-f6pt0zjy.js");
781
781
  let config;
782
782
  try {
783
- const { loadPluginConfigWithMeta } = await import("./index-ytnm84ed.js");
783
+ const { loadPluginConfigWithMeta } = await import("./index-p5y72gtj.js");
784
784
  const { config: loadedConfig } = loadPluginConfigWithMeta(directory);
785
785
  config = KnowledgeConfigSchema.parse(loadedConfig.knowledge ?? {});
786
786
  } catch {
@@ -12,14 +12,14 @@ import {
12
12
  detectPosixWrites,
13
13
  detectWindowsWrites,
14
14
  resolveWriteTargets
15
- } from "./index-nk2ma3mh.js";
15
+ } from "./index-73sxchez.js";
16
16
  import {
17
17
  checkFileAuthority,
18
18
  classifyFile,
19
19
  isInDeclaredScope,
20
20
  redactPath,
21
21
  redactShellCommand
22
- } from "./index-pkby67j3.js";
22
+ } from "./index-kkn2jxda.js";
23
23
 
24
24
  // src/services/guardrail-explain-service.ts
25
25
  import path from "path";
@@ -15,7 +15,7 @@ import {
15
15
  import {
16
16
  init_schema,
17
17
  stripKnownSwarmPrefix
18
- } from "./index-g4w73p1v.js";
18
+ } from "./index-mqqmant3.js";
19
19
  import {
20
20
  init_constants
21
21
  } from "./index-jqsfsqbx.js";
@@ -21,7 +21,7 @@ var package_default;
21
21
  var init_package = __esm(() => {
22
22
  package_default = {
23
23
  name: "opencode-swarm",
24
- version: "7.141.0",
24
+ version: "7.141.2",
25
25
  description: "Architect-centric agentic swarm plugin for OpenCode - hub-and-spoke orchestration with SME consultation, code generation, and QA review",
26
26
  main: "dist/index.js",
27
27
  types: "dist/index.d.ts",
@@ -8,7 +8,7 @@ import {
8
8
  PlanSchema,
9
9
  TaskStatusSchema,
10
10
  init_loader
11
- } from "./index-fckf6g01.js";
11
+ } from "./index-y6k6x197.js";
12
12
  import {
13
13
  criticalWarn,
14
14
  init_logger,
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  _internals,
4
4
  resolveWorktreeIsolationConfig
5
- } from "./index-1dwa96x7.js";
5
+ } from "./index-r6pdts5c.js";
6
6
  import {
7
7
  ApprovalEvidenceSchema,
8
8
  BaseEvidenceSchema,
@@ -42,7 +42,7 @@ import {
42
42
  loadPluginConfig,
43
43
  loadPluginConfigWithMeta,
44
44
  loadPluginConfigWithMetaAsync
45
- } from "./index-fckf6g01.js";
45
+ } from "./index-y6k6x197.js";
46
46
  import"./index-4rhhvd1a.js";
47
47
  import"./index-zgwm4ryv.js";
48
48
  import {
@@ -66,7 +66,7 @@ import {
66
66
  TurboConfigSchema,
67
67
  WorktreeIsolationConfigSchema,
68
68
  resolveAutoReviewConfig
69
- } from "./index-g4w73p1v.js";
69
+ } from "./index-mqqmant3.js";
70
70
  import {
71
71
  ALL_AGENT_NAMES,
72
72
  ALL_SUBAGENT_NAMES,
@@ -86,7 +86,7 @@ var _internals = {
86
86
  symlinkSync: fs.symlinkSync
87
87
  },
88
88
  writeScopeToDisk: async (directory, taskId, files) => {
89
- const { writeScopeToDisk: realWrite } = await import("./scope-persistence-v51d74j2.js");
89
+ const { writeScopeToDisk: realWrite } = await import("./scope-persistence-jc0mtp7g.js");
90
90
  return realWrite(directory, taskId, files);
91
91
  },
92
92
  writeLaneProfileToDisk: async (_worktreePath, _laneIndex, _envOverrides) => {
@@ -2,10 +2,10 @@
2
2
  import {
3
3
  init_loader,
4
4
  loadPluginConfigWithMeta
5
- } from "./index-fckf6g01.js";
5
+ } from "./index-y6k6x197.js";
6
6
  import {
7
7
  init_schema
8
- } from "./index-g4w73p1v.js";
8
+ } from "./index-mqqmant3.js";
9
9
  import {
10
10
  DEFAULT_WORKTREE_ISOLATION_CONFIG,
11
11
  init_constants
@@ -5,7 +5,7 @@ import {
5
5
  import {
6
6
  computePlanStructureHash,
7
7
  derivePlanId
8
- } from "./index-rx33k785.js";
8
+ } from "./index-mxtt4x8r.js";
9
9
  import {
10
10
  assertProjectRoot
11
11
  } from "./index-zbj3yrrd.js";
@@ -17,7 +17,7 @@ import {
17
17
  } from "./index-4nt52yr9.js";
18
18
  import {
19
19
  PlanSchema
20
- } from "./index-fckf6g01.js";
20
+ } from "./index-y6k6x197.js";
21
21
  import {
22
22
  __toESM
23
23
  } from "./index-a76rekgs.js";
@@ -1,10 +1,10 @@
1
1
  // @bun
2
2
  import {
3
3
  handleGuardrailExplain
4
- } from "./index-nkr3j0j1.js";
4
+ } from "./index-jpt07f2k.js";
5
5
  import {
6
6
  handleGuardrailLog
7
- } from "./index-9snyxgtf.js";
7
+ } from "./index-zf5nkkdd.js";
8
8
  import {
9
9
  COMMAND_REGISTRY,
10
10
  SWARM_COMMAND_TOOL_ALLOWLIST,
@@ -84,41 +84,41 @@ import {
84
84
  handleWriteRetroCommand,
85
85
  normalizeSwarmCommandInput,
86
86
  resolveCommand
87
- } from "./index-nk2ma3mh.js";
87
+ } from "./index-73sxchez.js";
88
88
  import"./index-4905hd2m.js";
89
- import"./index-ays8g6cm.js";
89
+ import"./index-ebwznsfy.js";
90
90
  import"./index-f1hsrgw1.js";
91
- import"./index-pkby67j3.js";
91
+ import"./index-kkn2jxda.js";
92
92
  import"./index-c8s9a3zh.js";
93
- import"./index-m54erqap.js";
94
- import"./index-awwqa1f5.js";
93
+ import"./index-xx0q37xb.js";
94
+ import"./index-why8n7cr.js";
95
95
  import"./index-134d35c1.js";
96
96
  import"./index-q4vaar2b.js";
97
97
  import"./index-y8552snf.js";
98
98
  import"./index-9ss2m4rs.js";
99
99
  import"./index-74hpm6sh.js";
100
- import"./index-fcsf8vjm.js";
101
- import"./index-x5kk9gyk.js";
102
- import"./index-xcqst95a.js";
100
+ import"./index-h3vk67wp.js";
101
+ import"./index-aqzvjhb7.js";
102
+ import"./index-bxjhn3t3.js";
103
103
  import"./index-xmzmeknp.js";
104
104
  import"./index-qskz8j2z.js";
105
- import"./index-sd1w4pya.js";
105
+ import"./index-szrcxvr7.js";
106
106
  import"./index-556ja8an.js";
107
- import"./index-rx33k785.js";
107
+ import"./index-mxtt4x8r.js";
108
108
  import"./index-zsrtt42s.js";
109
- import"./index-10zsx1x2.js";
109
+ import"./index-qa50yyeh.js";
110
110
  import"./index-qwm6vdyv.js";
111
111
  import"./index-3d13jkzq.js";
112
112
  import"./index-nse60anv.js";
113
113
  import"./index-8fwhhayc.js";
114
114
  import"./index-q1exe2b3.js";
115
- import"./index-acpsb3g1.js";
115
+ import"./index-76651erq.js";
116
116
  import"./index-k46me75h.js";
117
117
  import"./index-ee3x66a5.js";
118
- import"./index-w95sxwfr.js";
118
+ import"./index-6bp1jecx.js";
119
119
  import"./index-v250345n.js";
120
120
  import"./index-rtry5xyf.js";
121
- import"./index-b9mwe99e.js";
121
+ import"./index-hwxcdrv9.js";
122
122
  import"./index-ae75rja9.js";
123
123
  import"./index-kq5p3nm3.js";
124
124
  import"./index-c2hczjhp.js";
@@ -126,16 +126,16 @@ import"./index-zbj3yrrd.js";
126
126
  import"./index-7g4c7s5r.js";
127
127
  import"./index-ed5ykebp.js";
128
128
  import"./index-4nt52yr9.js";
129
- import"./index-1dwa96x7.js";
129
+ import"./index-r6pdts5c.js";
130
130
  import"./index-gprxjmm7.js";
131
131
  import"./index-n832052r.js";
132
- import"./index-fckf6g01.js";
132
+ import"./index-y6k6x197.js";
133
133
  import"./index-4rhhvd1a.js";
134
134
  import"./index-zgwm4ryv.js";
135
135
  import {
136
136
  init_schema,
137
137
  stripKnownSwarmPrefix
138
- } from "./index-g4w73p1v.js";
138
+ } from "./index-mqqmant3.js";
139
139
  import {
140
140
  AGENT_TOOL_MAP,
141
141
  ORCHESTRATOR_NAME,
@@ -29,7 +29,7 @@ import {
29
29
  replayFromLedgerWithStatus,
30
30
  takeSnapshotEvent,
31
31
  takeSnapshotWithRetry
32
- } from "./index-rx33k785.js";
32
+ } from "./index-mxtt4x8r.js";
33
33
  import {
34
34
  getWorktreeMergeFailure
35
35
  } from "./index-zsrtt42s.js";
@@ -71,7 +71,7 @@ import {
71
71
  } from "./index-gprxjmm7.js";
72
72
  import {
73
73
  PlanSchema
74
- } from "./index-fckf6g01.js";
74
+ } from "./index-y6k6x197.js";
75
75
  import {
76
76
  criticalWarn,
77
77
  error,
@@ -9,7 +9,7 @@ import {
9
9
  PluginConfigSchema,
10
10
  init_schema,
11
11
  stripKnownSwarmPrefix
12
- } from "./index-g4w73p1v.js";
12
+ } from "./index-mqqmant3.js";
13
13
  import {
14
14
  ALL_AGENT_NAMES,
15
15
  init_constants
@@ -10,7 +10,7 @@ import {
10
10
  PluginConfigSchema,
11
11
  init_schema,
12
12
  resolveExternalSkillsConfig
13
- } from "./index-g4w73p1v.js";
13
+ } from "./index-mqqmant3.js";
14
14
  import {
15
15
  MAX_MERGE_DEPTH,
16
16
  deepMerge,
@@ -2,7 +2,7 @@
2
2
  import {
3
3
  redactPath,
4
4
  redactShellCommand
5
- } from "./index-pkby67j3.js";
5
+ } from "./index-kkn2jxda.js";
6
6
 
7
7
  // src/services/guardrail-log-service.ts
8
8
  import * as fs from "fs/promises";
package/dist/cli/index.js CHANGED
@@ -6,41 +6,41 @@ import {
6
6
  getPluginConfigDir,
7
7
  getPluginLockFilePaths,
8
8
  resolveCommand
9
- } from "./index-nk2ma3mh.js";
9
+ } from "./index-73sxchez.js";
10
10
  import"./index-4905hd2m.js";
11
- import"./index-ays8g6cm.js";
11
+ import"./index-ebwznsfy.js";
12
12
  import"./index-f1hsrgw1.js";
13
- import"./index-pkby67j3.js";
13
+ import"./index-kkn2jxda.js";
14
14
  import"./index-c8s9a3zh.js";
15
- import"./index-m54erqap.js";
16
- import"./index-awwqa1f5.js";
15
+ import"./index-xx0q37xb.js";
16
+ import"./index-why8n7cr.js";
17
17
  import"./index-134d35c1.js";
18
18
  import"./index-q4vaar2b.js";
19
19
  import"./index-y8552snf.js";
20
20
  import"./index-9ss2m4rs.js";
21
21
  import"./index-74hpm6sh.js";
22
- import"./index-fcsf8vjm.js";
23
- import"./index-x5kk9gyk.js";
24
- import"./index-xcqst95a.js";
22
+ import"./index-h3vk67wp.js";
23
+ import"./index-aqzvjhb7.js";
24
+ import"./index-bxjhn3t3.js";
25
25
  import"./index-xmzmeknp.js";
26
26
  import"./index-qskz8j2z.js";
27
- import"./index-sd1w4pya.js";
27
+ import"./index-szrcxvr7.js";
28
28
  import"./index-556ja8an.js";
29
- import"./index-rx33k785.js";
29
+ import"./index-mxtt4x8r.js";
30
30
  import"./index-zsrtt42s.js";
31
- import"./index-10zsx1x2.js";
31
+ import"./index-qa50yyeh.js";
32
32
  import"./index-qwm6vdyv.js";
33
33
  import"./index-3d13jkzq.js";
34
34
  import"./index-nse60anv.js";
35
35
  import"./index-8fwhhayc.js";
36
36
  import"./index-q1exe2b3.js";
37
- import"./index-acpsb3g1.js";
37
+ import"./index-76651erq.js";
38
38
  import"./index-k46me75h.js";
39
39
  import"./index-ee3x66a5.js";
40
- import"./index-w95sxwfr.js";
40
+ import"./index-6bp1jecx.js";
41
41
  import"./index-v250345n.js";
42
42
  import"./index-rtry5xyf.js";
43
- import"./index-b9mwe99e.js";
43
+ import"./index-hwxcdrv9.js";
44
44
  import"./index-ae75rja9.js";
45
45
  import"./index-kq5p3nm3.js";
46
46
  import"./index-c2hczjhp.js";
@@ -48,16 +48,16 @@ import"./index-zbj3yrrd.js";
48
48
  import"./index-7g4c7s5r.js";
49
49
  import"./index-ed5ykebp.js";
50
50
  import"./index-4nt52yr9.js";
51
- import"./index-1dwa96x7.js";
51
+ import"./index-r6pdts5c.js";
52
52
  import"./index-gprxjmm7.js";
53
53
  import"./index-n832052r.js";
54
- import"./index-fckf6g01.js";
54
+ import"./index-y6k6x197.js";
55
55
  import"./index-4rhhvd1a.js";
56
56
  import"./index-zgwm4ryv.js";
57
57
  import {
58
58
  init_package,
59
59
  package_default
60
- } from "./index-g4w73p1v.js";
60
+ } from "./index-mqqmant3.js";
61
61
  import {
62
62
  DEFAULT_AGENT_CONFIGS,
63
63
  init_constants
@@ -9,11 +9,11 @@ import {
9
9
  maybeEscalateOnViolation,
10
10
  maybeQuarantineOnContradiction,
11
11
  readRecentEscalations
12
- } from "./index-x5kk9gyk.js";
13
- import"./index-acpsb3g1.js";
12
+ } from "./index-aqzvjhb7.js";
13
+ import"./index-76651erq.js";
14
14
  import"./index-k46me75h.js";
15
15
  import"./index-ee3x66a5.js";
16
- import"./index-b9mwe99e.js";
16
+ import"./index-hwxcdrv9.js";
17
17
  import"./index-ae75rja9.js";
18
18
  import"./index-kq5p3nm3.js";
19
19
  import"./index-c2hczjhp.js";
@@ -21,13 +21,13 @@ import"./index-zbj3yrrd.js";
21
21
  import"./index-7g4c7s5r.js";
22
22
  import"./index-ed5ykebp.js";
23
23
  import"./index-4nt52yr9.js";
24
- import"./index-1dwa96x7.js";
24
+ import"./index-r6pdts5c.js";
25
25
  import"./index-gprxjmm7.js";
26
26
  import"./index-n832052r.js";
27
- import"./index-fckf6g01.js";
27
+ import"./index-y6k6x197.js";
28
28
  import"./index-4rhhvd1a.js";
29
29
  import"./index-zgwm4ryv.js";
30
- import"./index-g4w73p1v.js";
30
+ import"./index-mqqmant3.js";
31
31
  import"./index-jqsfsqbx.js";
32
32
  import"./index-zjygnfay.js";
33
33
  import"./index-bk5tah7q.js";
@@ -29,7 +29,7 @@ import {
29
29
  resolveKnowledgeCounterBaselinePath,
30
30
  resolveKnowledgeEventsPath,
31
31
  resolveLegacyApplicationLogPath
32
- } from "./index-acpsb3g1.js";
32
+ } from "./index-76651erq.js";
33
33
  import"./index-k46me75h.js";
34
34
  import"./index-ee3x66a5.js";
35
35
  import"./index-ae75rja9.js";
@@ -39,13 +39,13 @@ import"./index-zbj3yrrd.js";
39
39
  import"./index-7g4c7s5r.js";
40
40
  import"./index-ed5ykebp.js";
41
41
  import"./index-4nt52yr9.js";
42
- import"./index-1dwa96x7.js";
42
+ import"./index-r6pdts5c.js";
43
43
  import"./index-gprxjmm7.js";
44
44
  import"./index-n832052r.js";
45
- import"./index-fckf6g01.js";
45
+ import"./index-y6k6x197.js";
46
46
  import"./index-4rhhvd1a.js";
47
47
  import"./index-zgwm4ryv.js";
48
- import"./index-g4w73p1v.js";
48
+ import"./index-mqqmant3.js";
49
49
  import"./index-jqsfsqbx.js";
50
50
  import"./index-zjygnfay.js";
51
51
  import"./index-bk5tah7q.js";
@@ -41,7 +41,7 @@ import {
41
41
  transactKnowledge,
42
42
  transactKnowledgeWithCas,
43
43
  wordBigrams
44
- } from "./index-b9mwe99e.js";
44
+ } from "./index-hwxcdrv9.js";
45
45
  import {
46
46
  resolveHiveDataDir
47
47
  } from "./index-ae75rja9.js";
@@ -23,10 +23,10 @@ import {
23
23
  validateLesson,
24
24
  validateSkillCandidatePath,
25
25
  validateSkillPath
26
- } from "./index-w95sxwfr.js";
26
+ } from "./index-6bp1jecx.js";
27
27
  import"./index-v250345n.js";
28
28
  import"./index-rtry5xyf.js";
29
- import"./index-b9mwe99e.js";
29
+ import"./index-hwxcdrv9.js";
30
30
  import"./index-ae75rja9.js";
31
31
  import"./index-kq5p3nm3.js";
32
32
  import"./index-c2hczjhp.js";
@@ -4,8 +4,8 @@ import {
4
4
  alreadyCuratedThisGeneration,
5
5
  claimNextScanBatch,
6
6
  getScanStatus
7
- } from "./index-xcqst95a.js";
8
- import"./index-b9mwe99e.js";
7
+ } from "./index-bxjhn3t3.js";
8
+ import"./index-hwxcdrv9.js";
9
9
  import"./index-ae75rja9.js";
10
10
  import"./index-kq5p3nm3.js";
11
11
  import"./index-c2hczjhp.js";
@@ -96,7 +96,7 @@ import {
96
96
  resolveGeneratedAgentRole,
97
97
  resolveGuardrailsConfig,
98
98
  stripKnownSwarmPrefix
99
- } from "./index-g4w73p1v.js";
99
+ } from "./index-mqqmant3.js";
100
100
  import"./index-jqsfsqbx.js";
101
101
  import"./index-zjygnfay.js";
102
102
  import"./index-bk5tah7q.js";
@@ -23,16 +23,16 @@ import {
23
23
  tombstoneScopeBinding,
24
24
  writeScopeBindingToDisk,
25
25
  writeScopeToDisk
26
- } from "./index-sd1w4pya.js";
26
+ } from "./index-szrcxvr7.js";
27
27
  import"./index-556ja8an.js";
28
- import"./index-rx33k785.js";
28
+ import"./index-mxtt4x8r.js";
29
29
  import"./index-zbj3yrrd.js";
30
30
  import"./index-7g4c7s5r.js";
31
31
  import"./index-4nt52yr9.js";
32
- import"./index-fckf6g01.js";
32
+ import"./index-y6k6x197.js";
33
33
  import"./index-4rhhvd1a.js";
34
34
  import"./index-zgwm4ryv.js";
35
- import"./index-g4w73p1v.js";
35
+ import"./index-mqqmant3.js";
36
36
  import"./index-jqsfsqbx.js";
37
37
  import"./index-zjygnfay.js";
38
38
  import"./index-bk5tah7q.js";
@@ -33,14 +33,14 @@ import {
33
33
  sanitizeSlug,
34
34
  selectCandidateEntries,
35
35
  writeEvalStub
36
- } from "./index-fcsf8vjm.js";
37
- import"./index-acpsb3g1.js";
36
+ } from "./index-h3vk67wp.js";
37
+ import"./index-76651erq.js";
38
38
  import"./index-k46me75h.js";
39
39
  import"./index-ee3x66a5.js";
40
- import"./index-w95sxwfr.js";
40
+ import"./index-6bp1jecx.js";
41
41
  import"./index-v250345n.js";
42
42
  import"./index-rtry5xyf.js";
43
- import"./index-b9mwe99e.js";
43
+ import"./index-hwxcdrv9.js";
44
44
  import"./index-ae75rja9.js";
45
45
  import"./index-kq5p3nm3.js";
46
46
  import"./index-c2hczjhp.js";
@@ -48,13 +48,13 @@ import"./index-zbj3yrrd.js";
48
48
  import"./index-7g4c7s5r.js";
49
49
  import"./index-ed5ykebp.js";
50
50
  import"./index-4nt52yr9.js";
51
- import"./index-1dwa96x7.js";
51
+ import"./index-r6pdts5c.js";
52
52
  import"./index-gprxjmm7.js";
53
53
  import"./index-n832052r.js";
54
- import"./index-fckf6g01.js";
54
+ import"./index-y6k6x197.js";
55
55
  import"./index-4rhhvd1a.js";
56
56
  import"./index-zgwm4ryv.js";
57
- import"./index-g4w73p1v.js";
57
+ import"./index-mqqmant3.js";
58
58
  import"./index-jqsfsqbx.js";
59
59
  import"./index-zjygnfay.js";
60
60
  import"./index-bk5tah7q.js";