nexus-agents 2.102.0 → 2.102.1
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-DR6YA645.js → chunk-5SNDOBMV.js} +3 -3
- package/dist/{chunk-PC6GNOES.js → chunk-CE2RB6GA.js} +2 -2
- package/dist/{chunk-MLTNGA4P.js → chunk-DQ5ZR66I.js} +12 -5
- package/dist/chunk-DQ5ZR66I.js.map +1 -0
- package/dist/cli.js +3 -3
- package/dist/index.d.ts +24 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/{setup-command-CRJACYUE.js → setup-command-ASIVCHUE.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-MLTNGA4P.js.map +0 -1
- /package/dist/{chunk-DR6YA645.js.map → chunk-5SNDOBMV.js.map} +0 -0
- /package/dist/{chunk-PC6GNOES.js.map → chunk-CE2RB6GA.js.map} +0 -0
- /package/dist/{setup-command-CRJACYUE.js.map → setup-command-ASIVCHUE.js.map} +0 -0
|
@@ -40,7 +40,7 @@ import {
|
|
|
40
40
|
} from "./chunk-CH7QIDHQ.js";
|
|
41
41
|
|
|
42
42
|
// src/version.ts
|
|
43
|
-
var VERSION = true ? "2.102.
|
|
43
|
+
var VERSION = true ? "2.102.1" : "dev";
|
|
44
44
|
|
|
45
45
|
// src/config/schemas-core.ts
|
|
46
46
|
import { z } from "zod";
|
|
@@ -2096,7 +2096,7 @@ async function runDoctorFix(result) {
|
|
|
2096
2096
|
writeLine2("\u2500".repeat(40));
|
|
2097
2097
|
let fixCount = 0;
|
|
2098
2098
|
if (!result.dataDirectory.rootExists || result.dataDirectory.subdirectories.some((d) => !d.exists || !d.writable)) {
|
|
2099
|
-
const { runSetup } = await import("./setup-command-
|
|
2099
|
+
const { runSetup } = await import("./setup-command-ASIVCHUE.js");
|
|
2100
2100
|
const setupResult = runSetup({
|
|
2101
2101
|
skipMcp: true,
|
|
2102
2102
|
skipRules: true,
|
|
@@ -2208,4 +2208,4 @@ export {
|
|
|
2208
2208
|
startStdioServer,
|
|
2209
2209
|
closeServer
|
|
2210
2210
|
};
|
|
2211
|
-
//# sourceMappingURL=chunk-
|
|
2211
|
+
//# sourceMappingURL=chunk-5SNDOBMV.js.map
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
checkSqlite,
|
|
9
9
|
defaultConfig,
|
|
10
10
|
initDataDirectories
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-5SNDOBMV.js";
|
|
12
12
|
import {
|
|
13
13
|
probeAllClis
|
|
14
14
|
} from "./chunk-3GF52QPA.js";
|
|
@@ -1987,4 +1987,4 @@ export {
|
|
|
1987
1987
|
setupCommand,
|
|
1988
1988
|
setupCommandAsync
|
|
1989
1989
|
};
|
|
1990
|
-
//# sourceMappingURL=chunk-
|
|
1990
|
+
//# sourceMappingURL=chunk-CE2RB6GA.js.map
|
|
@@ -93,7 +93,7 @@ import {
|
|
|
93
93
|
DEFAULT_TASK_TTL_MS,
|
|
94
94
|
DEFAULT_TOOL_RATE_LIMITS,
|
|
95
95
|
clampTaskTtl
|
|
96
|
-
} from "./chunk-
|
|
96
|
+
} from "./chunk-5SNDOBMV.js";
|
|
97
97
|
import {
|
|
98
98
|
getAvailabilityCache,
|
|
99
99
|
getCliForModelId,
|
|
@@ -28114,6 +28114,13 @@ function resetPipelinePluginRegistry() {
|
|
|
28114
28114
|
globalPluginRegistry = void 0;
|
|
28115
28115
|
}
|
|
28116
28116
|
|
|
28117
|
+
// src/pipeline/pipeline-deps.ts
|
|
28118
|
+
function resolvePipelineDeps(deps) {
|
|
28119
|
+
return {
|
|
28120
|
+
pluginRegistry: deps?.pluginRegistry ?? getPipelinePluginRegistry()
|
|
28121
|
+
};
|
|
28122
|
+
}
|
|
28123
|
+
|
|
28117
28124
|
// src/pipeline/pipeline-observability.ts
|
|
28118
28125
|
function resolveBus(bus) {
|
|
28119
28126
|
return bus ?? getPipelineEventBus();
|
|
@@ -28340,9 +28347,8 @@ function getDefaultRunsDir() {
|
|
|
28340
28347
|
var PipelineRunner = class {
|
|
28341
28348
|
/** Compiles a PlanContract into a CompiledPipeline. */
|
|
28342
28349
|
compile(plan, options) {
|
|
28343
|
-
const
|
|
28344
|
-
|
|
28345
|
-
};
|
|
28350
|
+
const { pluginRegistry } = resolvePipelineDeps(options);
|
|
28351
|
+
const compileOpts = { pluginRegistry };
|
|
28346
28352
|
const graphResult = compilePlan(plan, compileOpts);
|
|
28347
28353
|
if (!graphResult.ok) {
|
|
28348
28354
|
return { ok: false, error: graphResult.error };
|
|
@@ -50491,6 +50497,7 @@ export {
|
|
|
50491
50497
|
createCorePluginRegistry,
|
|
50492
50498
|
getPipelinePluginRegistry,
|
|
50493
50499
|
resetPipelinePluginRegistry,
|
|
50500
|
+
resolvePipelineDeps,
|
|
50494
50501
|
emitStageStarted,
|
|
50495
50502
|
emitStageCompleted,
|
|
50496
50503
|
emitStageFailed,
|
|
@@ -50698,4 +50705,4 @@ export {
|
|
|
50698
50705
|
detectBackend,
|
|
50699
50706
|
createTaskTracker
|
|
50700
50707
|
};
|
|
50701
|
-
//# sourceMappingURL=chunk-
|
|
50708
|
+
//# sourceMappingURL=chunk-DQ5ZR66I.js.map
|