nexus-agents 2.125.36 → 2.125.37
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.
- package/dist/{chunk-MUPSBFGD.js → chunk-FRE5G2OD.js} +2 -2
- package/dist/{chunk-4LYMLGHZ.js → chunk-L7R6DLF3.js} +3 -3
- package/dist/{chunk-Y5SDY462.js → chunk-QASYDORV.js} +8 -2
- package/dist/{chunk-Y5SDY462.js.map → chunk-QASYDORV.js.map} +1 -1
- package/dist/{chunk-SOGHVI6W.js → chunk-V2CLCDW6.js} +118 -66
- package/dist/{chunk-SOGHVI6W.js.map → chunk-V2CLCDW6.js.map} +1 -1
- package/dist/cli.js +4 -4
- package/dist/{consensus-vote-4ZB7C5QG.js → consensus-vote-ZC25LNEC.js} +2 -2
- package/dist/index.d.ts +5 -1
- package/dist/index.js +4 -4
- package/dist/{setup-command-7DLSQVUI.js → setup-command-VFACYFPG.js} +3 -3
- package/package.json +1 -1
- /package/dist/{chunk-MUPSBFGD.js.map → chunk-FRE5G2OD.js.map} +0 -0
- /package/dist/{chunk-4LYMLGHZ.js.map → chunk-L7R6DLF3.js.map} +0 -0
- /package/dist/{consensus-vote-4ZB7C5QG.js.map → consensus-vote-ZC25LNEC.js.map} +0 -0
- /package/dist/{setup-command-7DLSQVUI.js.map → setup-command-VFACYFPG.js.map} +0 -0
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
checkSqlite,
|
|
9
9
|
defaultConfig,
|
|
10
10
|
initDataDirectories
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-L7R6DLF3.js";
|
|
12
12
|
import {
|
|
13
13
|
BUILT_IN_EXPERTS
|
|
14
14
|
} from "./chunk-ZM4O442V.js";
|
|
@@ -2000,4 +2000,4 @@ export {
|
|
|
2000
2000
|
setupCommand,
|
|
2001
2001
|
setupCommandAsync
|
|
2002
2002
|
};
|
|
2003
|
-
//# sourceMappingURL=chunk-
|
|
2003
|
+
//# sourceMappingURL=chunk-FRE5G2OD.js.map
|
|
@@ -40,7 +40,7 @@ import {
|
|
|
40
40
|
} from "./chunk-ZGLIHPGJ.js";
|
|
41
41
|
|
|
42
42
|
// src/version.ts
|
|
43
|
-
var VERSION = true ? "2.125.
|
|
43
|
+
var VERSION = true ? "2.125.37" : "dev";
|
|
44
44
|
|
|
45
45
|
// src/config/schemas-core.ts
|
|
46
46
|
import { z } from "zod";
|
|
@@ -2121,7 +2121,7 @@ async function runDoctorFix(result) {
|
|
|
2121
2121
|
writeLine2("\u2500".repeat(40));
|
|
2122
2122
|
let fixCount = 0;
|
|
2123
2123
|
if (!result.dataDirectory.rootExists || result.dataDirectory.subdirectories.some((d) => !d.exists || !d.writable)) {
|
|
2124
|
-
const { runSetup } = await import("./setup-command-
|
|
2124
|
+
const { runSetup } = await import("./setup-command-VFACYFPG.js");
|
|
2125
2125
|
const setupResult = runSetup({
|
|
2126
2126
|
skipMcp: true,
|
|
2127
2127
|
skipRules: true,
|
|
@@ -2233,4 +2233,4 @@ export {
|
|
|
2233
2233
|
startStdioServer,
|
|
2234
2234
|
closeServer
|
|
2235
2235
|
};
|
|
2236
|
-
//# sourceMappingURL=chunk-
|
|
2236
|
+
//# sourceMappingURL=chunk-L7R6DLF3.js.map
|
|
@@ -4768,7 +4768,13 @@ var DEFAULT_JOB_CAPS = {
|
|
|
4768
4768
|
run_dev_pipeline: 2,
|
|
4769
4769
|
// #3730: run_pipeline is a multi-stage adaptive orchestrator with per-stage
|
|
4770
4770
|
// experts (live LLM calls). Same shape as run_dev_pipeline — cap low at 2.
|
|
4771
|
-
run_pipeline: 2
|
|
4771
|
+
run_pipeline: 2,
|
|
4772
|
+
// #3731: pr_review fans out to 5 live LLM voters in parallel. Same heavy
|
|
4773
|
+
// multi-llm-panel shape as consensus_vote — cap low at 2.
|
|
4774
|
+
pr_review: 2,
|
|
4775
|
+
// #3731: supply_chain_tradeoff_panel fans out to up to 7 live LLM voters in
|
|
4776
|
+
// parallel. Same heavy multi-llm-panel shape as consensus_vote — cap low at 2.
|
|
4777
|
+
supply_chain_tradeoff_panel: 2
|
|
4772
4778
|
};
|
|
4773
4779
|
var DEFAULT_GLOBAL_JOB_CAP = 10;
|
|
4774
4780
|
var inFlight = /* @__PURE__ */ new Map();
|
|
@@ -5551,4 +5557,4 @@ export {
|
|
|
5551
5557
|
CONSENSUS_VOTE_OUTPUT_SCHEMA,
|
|
5552
5558
|
registerConsensusVoteTool
|
|
5553
5559
|
};
|
|
5554
|
-
//# sourceMappingURL=chunk-
|
|
5560
|
+
//# sourceMappingURL=chunk-QASYDORV.js.map
|