nexus-agents 2.125.35 → 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-MQD4O3VU.js → chunk-FRE5G2OD.js} +2 -2
- package/dist/{chunk-2D5YBBFL.js → chunk-L7R6DLF3.js} +3 -3
- package/dist/{chunk-6UTAO7UT.js → chunk-QASYDORV.js} +11 -2
- package/dist/{chunk-6UTAO7UT.js.map → chunk-QASYDORV.js.map} +1 -1
- package/dist/{chunk-VDYEZRDV.js → chunk-V2CLCDW6.js} +150 -71
- package/dist/{chunk-VDYEZRDV.js.map → chunk-V2CLCDW6.js.map} +1 -1
- package/dist/cli.js +4 -4
- package/dist/{consensus-vote-ZZ44NQEP.js → consensus-vote-ZC25LNEC.js} +2 -2
- package/dist/index.d.ts +5 -1
- package/dist/index.js +4 -4
- package/dist/{setup-command-337RIW6B.js → setup-command-VFACYFPG.js} +3 -3
- package/package.json +1 -1
- /package/dist/{chunk-MQD4O3VU.js.map → chunk-FRE5G2OD.js.map} +0 -0
- /package/dist/{chunk-2D5YBBFL.js.map → chunk-L7R6DLF3.js.map} +0 -0
- /package/dist/{consensus-vote-ZZ44NQEP.js.map → consensus-vote-ZC25LNEC.js.map} +0 -0
- /package/dist/{setup-command-337RIW6B.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
|
|
@@ -4765,7 +4765,16 @@ var DEFAULT_JOB_CAPS = {
|
|
|
4765
4765
|
// #3726: run_dev_pipeline is a heavy multi-agent pipeline (plan→vote→
|
|
4766
4766
|
// decompose→implement→qa→security, each a live LLM call). Cap low — 2
|
|
4767
4767
|
// concurrent real runs already saturate adapter slots on most hosts.
|
|
4768
|
-
run_dev_pipeline: 2
|
|
4768
|
+
run_dev_pipeline: 2,
|
|
4769
|
+
// #3730: run_pipeline is a multi-stage adaptive orchestrator with per-stage
|
|
4770
|
+
// experts (live LLM calls). Same shape as run_dev_pipeline — cap low at 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
|
|
4769
4778
|
};
|
|
4770
4779
|
var DEFAULT_GLOBAL_JOB_CAP = 10;
|
|
4771
4780
|
var inFlight = /* @__PURE__ */ new Map();
|
|
@@ -5548,4 +5557,4 @@ export {
|
|
|
5548
5557
|
CONSENSUS_VOTE_OUTPUT_SCHEMA,
|
|
5549
5558
|
registerConsensusVoteTool
|
|
5550
5559
|
};
|
|
5551
|
-
//# sourceMappingURL=chunk-
|
|
5560
|
+
//# sourceMappingURL=chunk-QASYDORV.js.map
|