nexus-agents 2.77.1 → 2.77.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.
- package/dist/{chunk-YJ7DGTAU.js → chunk-6UDFAXUI.js} +2 -2
- package/dist/{chunk-FGQOGLHQ.js → chunk-N3HOBUU4.js} +9 -15
- package/dist/chunk-N3HOBUU4.js.map +1 -0
- package/dist/{chunk-EVI46ZGG.js → chunk-RFITLMH4.js} +3 -3
- package/dist/cli.js +3 -3
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -2
- package/dist/{setup-command-MF75ZAPA.js → setup-command-ZIG5JJAE.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-FGQOGLHQ.js.map +0 -1
- /package/dist/{chunk-YJ7DGTAU.js.map → chunk-6UDFAXUI.js.map} +0 -0
- /package/dist/{chunk-EVI46ZGG.js.map → chunk-RFITLMH4.js.map} +0 -0
- /package/dist/{setup-command-MF75ZAPA.js.map → setup-command-ZIG5JJAE.js.map} +0 -0
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
defaultConfig,
|
|
10
10
|
initDataDirectories,
|
|
11
11
|
probeAllClis
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-RFITLMH4.js";
|
|
13
13
|
import {
|
|
14
14
|
BUILT_IN_EXPERTS
|
|
15
15
|
} from "./chunk-ZM4O442V.js";
|
|
@@ -1946,4 +1946,4 @@ export {
|
|
|
1946
1946
|
setupCommand,
|
|
1947
1947
|
setupCommandAsync
|
|
1948
1948
|
};
|
|
1949
|
-
//# sourceMappingURL=chunk-
|
|
1949
|
+
//# sourceMappingURL=chunk-6UDFAXUI.js.map
|
|
@@ -70,7 +70,7 @@ import {
|
|
|
70
70
|
clampTaskTtl,
|
|
71
71
|
getAvailabilityCache,
|
|
72
72
|
resolveFallback
|
|
73
|
-
} from "./chunk-
|
|
73
|
+
} from "./chunk-RFITLMH4.js";
|
|
74
74
|
import {
|
|
75
75
|
DEFAULTS
|
|
76
76
|
} from "./chunk-YQMQSJQK.js";
|
|
@@ -1521,6 +1521,10 @@ var BaseAgentOptionsSchema = z4.object({
|
|
|
1521
1521
|
"pm_expert",
|
|
1522
1522
|
"ux_expert",
|
|
1523
1523
|
"infrastructure_expert",
|
|
1524
|
+
"qa_expert",
|
|
1525
|
+
// #2715 — was missing from this Zod copy; canonical AgentRole has it
|
|
1526
|
+
"data_visualization_expert",
|
|
1527
|
+
// #2715 — same
|
|
1524
1528
|
"thinker",
|
|
1525
1529
|
"worker",
|
|
1526
1530
|
"verifier",
|
|
@@ -10603,17 +10607,7 @@ function createManyExperts(configs, options) {
|
|
|
10603
10607
|
return ok(experts);
|
|
10604
10608
|
}
|
|
10605
10609
|
function createAllBuiltInExperts(options) {
|
|
10606
|
-
const types =
|
|
10607
|
-
"code",
|
|
10608
|
-
"architecture",
|
|
10609
|
-
"security",
|
|
10610
|
-
"documentation",
|
|
10611
|
-
"testing",
|
|
10612
|
-
"devops",
|
|
10613
|
-
"research",
|
|
10614
|
-
"pm",
|
|
10615
|
-
"ux"
|
|
10616
|
-
];
|
|
10610
|
+
const types = Object.keys(BUILT_IN_EXPERTS);
|
|
10617
10611
|
const experts = [];
|
|
10618
10612
|
for (const type of types) {
|
|
10619
10613
|
const result = createBuiltInExpert(type, options);
|
|
@@ -45668,7 +45662,7 @@ var PipelineInputSchema = z97.object({
|
|
|
45668
45662
|
task: z97.string().min(5).max(1e4).describe("Task description \u2014 pipeline template auto-selected based on content"),
|
|
45669
45663
|
/** Path to a spec file (.md, .yaml) to use as task input. */
|
|
45670
45664
|
specFile: z97.string().max(500).optional().describe("Path to a spec file \u2014 content prepended to task for greenfield projects"),
|
|
45671
|
-
/** Override template (
|
|
45665
|
+
/** Override template — see `listTemplateIds()` for the canonical list (#2728). Auto-detected if omitted. */
|
|
45672
45666
|
template: z97.string().max(50).optional().describe(`Pipeline template override. Available: ${listTemplateIds().join(", ")}`),
|
|
45673
45667
|
/** Voting strategy for consensus stages. */
|
|
45674
45668
|
votingStrategy: z97.enum([
|
|
@@ -45734,7 +45728,7 @@ function selectStageRegistry(template, task, agentStages) {
|
|
|
45734
45728
|
}
|
|
45735
45729
|
return createDevStageRegistry(agentStages);
|
|
45736
45730
|
}
|
|
45737
|
-
var RUN_PIPELINE_DESCRIPTION =
|
|
45731
|
+
var RUN_PIPELINE_DESCRIPTION = `Single unified entry point for all pipeline templates (${listTemplateIds().join("/")}). Auto-detects template from task content or accepts an explicit override.`;
|
|
45738
45732
|
function registerPipelineTool(server, _deps) {
|
|
45739
45733
|
server.registerTool(
|
|
45740
45734
|
"run_pipeline",
|
|
@@ -50007,4 +50001,4 @@ export {
|
|
|
50007
50001
|
detectBackend,
|
|
50008
50002
|
createTaskTracker
|
|
50009
50003
|
};
|
|
50010
|
-
//# sourceMappingURL=chunk-
|
|
50004
|
+
//# sourceMappingURL=chunk-N3HOBUU4.js.map
|