nexus-agents 2.60.0 → 2.62.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.
@@ -8,7 +8,7 @@ import {
8
8
  checkSqlite,
9
9
  defaultConfig,
10
10
  initDataDirectories
11
- } from "./chunk-XRXUCE6K.js";
11
+ } from "./chunk-V7AFOKWC.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-MJ3K4FYS.js.map
1936
+ //# sourceMappingURL=chunk-OJBW4II4.js.map
@@ -38,7 +38,7 @@ import {
38
38
  } from "./chunk-CLYZ7FWP.js";
39
39
 
40
40
  // src/version.ts
41
- var VERSION = true ? "2.60.0" : "dev";
41
+ var VERSION = true ? "2.62.0" : "dev";
42
42
 
43
43
  // src/config/schemas-core.ts
44
44
  import { z } from "zod";
@@ -2025,7 +2025,7 @@ async function runDoctorFix(result) {
2025
2025
  writeLine2("\u2500".repeat(40));
2026
2026
  let fixCount = 0;
2027
2027
  if (!result.dataDirectory.rootExists || result.dataDirectory.subdirectories.some((d) => !d.exists || !d.writable)) {
2028
- const { runSetup } = await import("./setup-command-LIX2S7JD.js");
2028
+ const { runSetup } = await import("./setup-command-FC67SJSP.js");
2029
2029
  const setupResult = runSetup({
2030
2030
  skipMcp: true,
2031
2031
  skipRules: true,
@@ -2123,6 +2123,7 @@ export {
2123
2123
  filterAvailableModels,
2124
2124
  DEFAULT_TASK_TTL_MS,
2125
2125
  clampTaskTtl,
2126
+ DATA_SUBDIRECTORIES,
2126
2127
  checkApiKeys,
2127
2128
  checkSqlite,
2128
2129
  checkDataDirectory,
@@ -2134,4 +2135,4 @@ export {
2134
2135
  startStdioServer,
2135
2136
  closeServer
2136
2137
  };
2137
- //# sourceMappingURL=chunk-XRXUCE6K.js.map
2138
+ //# sourceMappingURL=chunk-V7AFOKWC.js.map
@@ -68,7 +68,7 @@ import {
68
68
  clampTaskTtl,
69
69
  getAvailabilityCache,
70
70
  resolveFallback
71
- } from "./chunk-XRXUCE6K.js";
71
+ } from "./chunk-V7AFOKWC.js";
72
72
  import {
73
73
  DEFAULTS
74
74
  } from "./chunk-H43PABG4.js";
@@ -53661,4 +53661,4 @@ export {
53661
53661
  detectBackend,
53662
53662
  createTaskTracker
53663
53663
  };
53664
- //# sourceMappingURL=chunk-5JSMLCCK.js.map
53664
+ //# sourceMappingURL=chunk-X5WDX7L3.js.map
package/dist/cli.d.ts CHANGED
@@ -38,7 +38,7 @@ declare const EXIT_CODES: {
38
38
  /**
39
39
  * CLI command types that can be executed.
40
40
  */
41
- type CliCommand = 'server' | 'help' | 'version' | 'hello' | 'config' | 'expert' | 'workflow' | 'doctor' | 'verify' | 'review' | 'routing-audit' | 'orchestrate' | 'system-review' | 'vote' | 'index' | 'research' | 'validation' | 'learning-metrics' | 'swe-bench' | 'atbench' | 'setup' | 'hooks' | 'demo' | 'sprint' | 'session' | 'evaluate' | 'issue' | 'fitness-audit' | 'release-notes' | 'release-validate' | 'release-announce' | 'scaffold' | 'visualize' | 'capabilities' | 'status' | 'memory-benchmark' | 'auth' | 'scenario' | 'warm-up' | 'e2e-eval' | 'routing-ab' | 'memory-eval' | 'health' | 'validate' | 'registry';
41
+ type CliCommand = 'server' | 'help' | 'version' | 'hello' | 'config' | 'expert' | 'workflow' | 'doctor' | 'verify' | 'review' | 'routing-audit' | 'orchestrate' | 'system-review' | 'vote' | 'index' | 'research' | 'validation' | 'learning-metrics' | 'swe-bench' | 'atbench' | 'setup' | 'hooks' | 'demo' | 'sprint' | 'session' | 'evaluate' | 'issue' | 'fitness-audit' | 'release-notes' | 'release-validate' | 'release-announce' | 'scaffold' | 'visualize' | 'capabilities' | 'status' | 'memory-benchmark' | 'auth' | 'scenario' | 'warm-up' | 'e2e-eval' | 'routing-ab' | 'memory-eval' | 'health' | 'init' | 'validate' | 'registry';
42
42
  /**
43
43
  * Parsed CLI arguments and command.
44
44
  */
@@ -106,6 +106,9 @@ interface ParsedCliArgs {
106
106
  deep: boolean;
107
107
  json?: boolean;
108
108
  source?: string;
109
+ portable?: boolean;
110
+ gitignore?: boolean;
111
+ mcpConfig?: boolean;
109
112
  };
110
113
  positionals: string[];
111
114
  }