nexus-agents 2.57.0 → 2.58.0

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 (32) hide show
  1. package/dist/{chunk-Y7CD6AZW.js → chunk-7EYQBG3W.js} +4 -4
  2. package/dist/{chunk-QNYNQ257.js → chunk-GJ5BJU7A.js} +2 -2
  3. package/dist/{chunk-ZUWOFHNC.js → chunk-JKDHWOQL.js} +2 -2
  4. package/dist/{chunk-ZL3IBCH6.js → chunk-JLYJQ7OG.js} +6024 -5821
  5. package/dist/chunk-JLYJQ7OG.js.map +1 -0
  6. package/dist/{chunk-BOZ26RIB.js → chunk-L3NHOUEX.js} +52 -4
  7. package/dist/chunk-L3NHOUEX.js.map +1 -0
  8. package/dist/{chunk-SXWZS2V4.js → chunk-YQAOMDR2.js} +1 -1
  9. package/dist/chunk-YQAOMDR2.js.map +1 -0
  10. package/dist/cli.js +9 -7
  11. package/dist/cli.js.map +1 -1
  12. package/dist/{consensus-vote-CQ2JP6DC.js → consensus-vote-HDM6HA5Z.js} +3 -3
  13. package/dist/{dist-4LDAFGC5.js → dist-RLMRWMYO.js} +994 -779
  14. package/dist/dist-RLMRWMYO.js.map +1 -0
  15. package/dist/{expert-bridge-LT7PKUPS.js → expert-bridge-BHTUNALT.js} +2 -2
  16. package/dist/{factory-FZ2KSVYC.js → factory-6MT5VKI3.js} +2 -2
  17. package/dist/index.d.ts +72 -45
  18. package/dist/index.js +6 -6
  19. package/dist/index.js.map +1 -1
  20. package/dist/{setup-command-6EJONTOU.js → setup-command-KSQEYBDA.js} +4 -4
  21. package/package.json +5 -5
  22. package/dist/chunk-BOZ26RIB.js.map +0 -1
  23. package/dist/chunk-SXWZS2V4.js.map +0 -1
  24. package/dist/chunk-ZL3IBCH6.js.map +0 -1
  25. package/dist/dist-4LDAFGC5.js.map +0 -1
  26. /package/dist/{chunk-Y7CD6AZW.js.map → chunk-7EYQBG3W.js.map} +0 -0
  27. /package/dist/{chunk-QNYNQ257.js.map → chunk-GJ5BJU7A.js.map} +0 -0
  28. /package/dist/{chunk-ZUWOFHNC.js.map → chunk-JKDHWOQL.js.map} +0 -0
  29. /package/dist/{consensus-vote-CQ2JP6DC.js.map → consensus-vote-HDM6HA5Z.js.map} +0 -0
  30. /package/dist/{expert-bridge-LT7PKUPS.js.map → expert-bridge-BHTUNALT.js.map} +0 -0
  31. /package/dist/{factory-FZ2KSVYC.js.map → factory-6MT5VKI3.js.map} +0 -0
  32. /package/dist/{setup-command-6EJONTOU.js.map → setup-command-KSQEYBDA.js.map} +0 -0
@@ -9,7 +9,7 @@ import {
9
9
  } from "./chunk-633WH2ML.js";
10
10
  import {
11
11
  createAllAdapters
12
- } from "./chunk-SXWZS2V4.js";
12
+ } from "./chunk-YQAOMDR2.js";
13
13
  import {
14
14
  CliNameSchema,
15
15
  DEFAULT_CAPABILITIES,
@@ -35,7 +35,7 @@ import {
35
35
  } from "./chunk-CLYZ7FWP.js";
36
36
 
37
37
  // src/version.ts
38
- var VERSION = true ? "2.57.0" : "dev";
38
+ var VERSION = true ? "2.58.0" : "dev";
39
39
 
40
40
  // src/config/schemas-core.ts
41
41
  import { z } from "zod";
@@ -2024,7 +2024,7 @@ async function runDoctorFix(result) {
2024
2024
  writeLine2("\u2500".repeat(40));
2025
2025
  let fixCount = 0;
2026
2026
  if (!result.dataDirectory.rootExists || result.dataDirectory.subdirectories.some((d) => !d.exists || !d.writable)) {
2027
- const { runSetup } = await import("./setup-command-6EJONTOU.js");
2027
+ const { runSetup } = await import("./setup-command-KSQEYBDA.js");
2028
2028
  const setupResult = runSetup({
2029
2029
  skipMcp: true,
2030
2030
  skipRules: true,
@@ -2133,4 +2133,4 @@ export {
2133
2133
  startStdioServer,
2134
2134
  closeServer
2135
2135
  };
2136
- //# sourceMappingURL=chunk-Y7CD6AZW.js.map
2136
+ //# sourceMappingURL=chunk-7EYQBG3W.js.map
@@ -8,7 +8,7 @@ import {
8
8
  checkSqlite,
9
9
  defaultConfig,
10
10
  initDataDirectories
11
- } from "./chunk-Y7CD6AZW.js";
11
+ } from "./chunk-7EYQBG3W.js";
12
12
  import {
13
13
  BUILT_IN_EXPERTS
14
14
  } from "./chunk-GJVHRJO2.js";
@@ -1933,4 +1933,4 @@ export {
1933
1933
  setupCommand,
1934
1934
  setupCommandAsync
1935
1935
  };
1936
- //# sourceMappingURL=chunk-QNYNQ257.js.map
1936
+ //# sourceMappingURL=chunk-GJ5BJU7A.js.map
@@ -38,7 +38,7 @@ function adaptCompositeRouter(compositeRouter) {
38
38
  }
39
39
  async function getRouter() {
40
40
  if (cachedRouter !== null) return cachedRouter;
41
- const { createAllAdapters } = await import("./factory-FZ2KSVYC.js");
41
+ const { createAllAdapters } = await import("./factory-6MT5VKI3.js");
42
42
  const { createCompositeRouter } = await import("./composite-router-A7URDW4X.js");
43
43
  const adapters = createAllAdapters();
44
44
  if (adapters.size === 0) return null;
@@ -136,4 +136,4 @@ ${prompt}`;
136
136
  export {
137
137
  executeExpert
138
138
  };
139
- //# sourceMappingURL=chunk-ZUWOFHNC.js.map
139
+ //# sourceMappingURL=chunk-JKDHWOQL.js.map