nexus-agents 2.33.1 → 2.33.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.
@@ -4,7 +4,7 @@ import {
4
4
  import {
5
5
  VERSION,
6
6
  initDataDirectories
7
- } from "./chunk-OC7MOZPG.js";
7
+ } from "./chunk-SI4GQN6Q.js";
8
8
  import {
9
9
  CLI_SUBPROCESS_TIMEOUTS,
10
10
  createLogger,
@@ -1580,4 +1580,4 @@ export {
1580
1580
  setupCommand,
1581
1581
  setupCommandAsync
1582
1582
  };
1583
- //# sourceMappingURL=chunk-GSMYXYD7.js.map
1583
+ //# sourceMappingURL=chunk-QGB7QNEL.js.map
@@ -24,7 +24,7 @@ import {
24
24
  } from "./chunk-CLYZ7FWP.js";
25
25
 
26
26
  // src/version.ts
27
- var VERSION = true ? "2.33.1" : "dev";
27
+ var VERSION = true ? "2.33.2" : "dev";
28
28
 
29
29
  // src/cli/setup-data-dir.ts
30
30
  import { mkdirSync, existsSync as existsSync2 } from "fs";
@@ -758,7 +758,7 @@ async function runDoctorFix(result) {
758
758
  writeLine2("\u2500".repeat(40));
759
759
  let fixCount = 0;
760
760
  if (!result.dataDirectory.rootExists || result.dataDirectory.subdirectories.some((d) => !d.exists || !d.writable)) {
761
- const { runSetup } = await import("./setup-command-LQ3P6NUU.js");
761
+ const { runSetup } = await import("./setup-command-LQO75PWC.js");
762
762
  const setupResult = runSetup({
763
763
  skipMcp: true,
764
764
  skipRules: true,
@@ -836,4 +836,4 @@ export {
836
836
  startStdioServer,
837
837
  closeServer
838
838
  };
839
- //# sourceMappingURL=chunk-OC7MOZPG.js.map
839
+ //# sourceMappingURL=chunk-SI4GQN6Q.js.map
@@ -65,7 +65,7 @@ import {
65
65
  import {
66
66
  DEFAULT_TASK_TTL_MS,
67
67
  clampTaskTtl
68
- } from "./chunk-OC7MOZPG.js";
68
+ } from "./chunk-SI4GQN6Q.js";
69
69
  import {
70
70
  createSessionMemory
71
71
  } from "./chunk-XH6CQMDU.js";
@@ -53259,4 +53259,4 @@ export {
53259
53259
  detectBackend,
53260
53260
  createTaskTracker
53261
53261
  };
53262
- //# sourceMappingURL=chunk-TBMWMO4Q.js.map
53262
+ //# sourceMappingURL=chunk-SOPWV5AT.js.map
package/dist/cli.js CHANGED
@@ -15,7 +15,7 @@ import {
15
15
  import "./chunk-3RSILLFN.js";
16
16
  import {
17
17
  setupCommandAsync
18
- } from "./chunk-GSMYXYD7.js";
18
+ } from "./chunk-QGB7QNEL.js";
19
19
  import "./chunk-NOITIOCN.js";
20
20
  import {
21
21
  AuthHandler,
@@ -150,7 +150,7 @@ import {
150
150
  validateNexusEnv,
151
151
  validateWorkflow,
152
152
  wrapInMarkdownFence
153
- } from "./chunk-TBMWMO4Q.js";
153
+ } from "./chunk-SOPWV5AT.js";
154
154
  import {
155
155
  resolveToken
156
156
  } from "./chunk-SKUW2NOC.js";
@@ -200,7 +200,7 @@ import {
200
200
  doctorCommand,
201
201
  initDataDirectories,
202
202
  runDoctor
203
- } from "./chunk-OC7MOZPG.js";
203
+ } from "./chunk-SI4GQN6Q.js";
204
204
  import "./chunk-XH6CQMDU.js";
205
205
  import {
206
206
  MemoryError
@@ -10894,6 +10894,10 @@ function printSweBenchHelp() {
10894
10894
  console.log(`
10895
10895
  Usage: nexus-agents swe-bench <subcommand> [options]
10896
10896
 
10897
+ DEPRECATED: This command is being superseded by \`nexus-eval-swebench\`
10898
+ (https://github.com/williamzujkowski/nexus-eval-swebench). It remains
10899
+ functional for backwards compatibility but will not receive new features.
10900
+
10897
10901
  Subcommands:
10898
10902
  run Run agents on SWE-bench instances
10899
10903
  status Show progress and completed predictions
@@ -10918,11 +10922,21 @@ Evaluate options:
10918
10922
  --output-dir=<path> Harness log directory (default: ./logs/run_evaluation)
10919
10923
  `);
10920
10924
  }
10925
+ var deprecationWarned = false;
10926
+ function emitDeprecationWarning() {
10927
+ if (deprecationWarned) return;
10928
+ deprecationWarned = true;
10929
+ if (process.env["NEXUS_SUPPRESS_SWEBENCH_DEPRECATION"] === "1") return;
10930
+ console.warn(
10931
+ "[deprecation] `nexus-agents swe-bench` is superseded by `nexus-eval-swebench` (https://github.com/williamzujkowski/nexus-eval-swebench). This in-tree command remains functional but will not receive new benchmark features. Suppress this warning with NEXUS_SUPPRESS_SWEBENCH_DEPRECATION=1."
10932
+ );
10933
+ }
10921
10934
  async function sweBenchCommand(args) {
10922
10935
  if (args.length === 0 || args[0] === "--help" || args[0] === "-h") {
10923
10936
  printSweBenchHelp();
10924
10937
  return 0;
10925
10938
  }
10939
+ emitDeprecationWarning();
10926
10940
  const options = parseSweBenchArgs(args);
10927
10941
  try {
10928
10942
  const result = options.subcommand === "info" ? runInfo(options) : options.subcommand === "status" ? await runStatus(options) : options.subcommand === "evaluate" ? await runEvaluate(options) : await runBenchmark(options);