nexus-agents 2.63.1 → 2.63.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/README.md +7 -7
- package/dist/{chunk-SWF3WIP4.js → chunk-EB7LP5WD.js} +10 -6
- package/dist/{chunk-SWF3WIP4.js.map → chunk-EB7LP5WD.js.map} +1 -1
- package/dist/{chunk-RIMON2SA.js → chunk-PEDEZRPR.js} +26 -3
- package/dist/chunk-PEDEZRPR.js.map +1 -0
- package/dist/{chunk-C3FCZKNW.js → chunk-QJTOZIE7.js} +3 -3
- package/dist/{chunk-UDP5MKHK.js → chunk-V276U3ZC.js} +2 -2
- package/dist/cli.js +14 -7
- package/dist/cli.js.map +1 -1
- package/dist/{consensus-vote-2ZCR7P3T.js → consensus-vote-6FKSINXV.js} +2 -2
- package/dist/index.js +4 -4
- package/dist/{setup-command-WTVF4YEJ.js → setup-command-IP2PV75E.js} +3 -3
- package/package.json +1 -1
- package/dist/chunk-RIMON2SA.js.map +0 -1
- /package/dist/{chunk-C3FCZKNW.js.map → chunk-QJTOZIE7.js.map} +0 -0
- /package/dist/{chunk-UDP5MKHK.js.map → chunk-V276U3ZC.js.map} +0 -0
- /package/dist/{consensus-vote-2ZCR7P3T.js.map → consensus-vote-6FKSINXV.js.map} +0 -0
- /package/dist/{setup-command-WTVF4YEJ.js.map → setup-command-IP2PV75E.js.map} +0 -0
package/README.md
CHANGED
|
@@ -16,14 +16,14 @@ Nexus Agents makes your AI coding tools work together intelligently. It coordina
|
|
|
16
16
|
|
|
17
17
|
### Key Capabilities
|
|
18
18
|
|
|
19
|
-
- **Intelligent Routing** —
|
|
20
|
-
- **Multi-Expert Orchestration** —
|
|
21
|
-
- **Consensus Voting** —
|
|
19
|
+
- **Intelligent Routing** — Multi-stage CompositeRouter (TOPSIS, LinUCB bandit, distilled-rule short-circuit, weather-aware penalties). Learns from outcomes.
|
|
20
|
+
- **Multi-Expert Orchestration** — Specialized expert agents (code, architecture, security, testing, docs, devops, research, PM, UX, infrastructure, QA, data-visualization) coordinated by an Orchestrator.
|
|
21
|
+
- **Consensus Voting** — Six aggregation strategies: simple/super-majority, unanimous, higher-order Bayesian, opinion-wise, proof-of-learning.
|
|
22
22
|
- **Development Pipeline** — Research → Plan → Vote → Decompose → Implement → QA → Security. Autonomous, harness, and dry-run modes.
|
|
23
|
-
- **Memory & Learning** —
|
|
24
|
-
- **
|
|
25
|
-
- **Research System** —
|
|
26
|
-
- **Security** — Sandboxing, trust classification, SARIF parsing, input sanitization, red team pipeline
|
|
23
|
+
- **Memory & Learning** — Multiple backends (session, belief, adaptive, routing, graph, hybrid, agentic, typed) with cross-session persistence.
|
|
24
|
+
- **MCP Tools** — Agent management, workflow execution, research, memory, codebase intelligence, repo analysis, consensus, operations. See [docs/ENTRYPOINTS.md](https://github.com/williamzujkowski/nexus-agents/blob/main/docs/ENTRYPOINTS.md) for the canonical list.
|
|
25
|
+
- **Research System** — Discovery across arXiv, GitHub, Semantic Scholar, and other sources with auto-catalog and synthesis.
|
|
26
|
+
- **Security** — Sandboxing, trust classification, SARIF parsing, input sanitization, red team pipeline.
|
|
27
27
|
|
|
28
28
|
---
|
|
29
29
|
|
|
@@ -32,10 +32,11 @@ import {
|
|
|
32
32
|
toolError,
|
|
33
33
|
toolSuccess,
|
|
34
34
|
toolSuccessStructured,
|
|
35
|
+
warnIfSimulatedOutsideTests,
|
|
35
36
|
withAccessPolicy,
|
|
36
37
|
withProgressHeartbeat,
|
|
37
38
|
wrapToolWithTimeout
|
|
38
|
-
} from "./chunk-
|
|
39
|
+
} from "./chunk-PEDEZRPR.js";
|
|
39
40
|
import {
|
|
40
41
|
REGISTRY_PATH,
|
|
41
42
|
getProjectRoot,
|
|
@@ -68,7 +69,7 @@ import {
|
|
|
68
69
|
clampTaskTtl,
|
|
69
70
|
getAvailabilityCache,
|
|
70
71
|
resolveFallback
|
|
71
|
-
} from "./chunk-
|
|
72
|
+
} from "./chunk-QJTOZIE7.js";
|
|
72
73
|
import {
|
|
73
74
|
DEFAULTS
|
|
74
75
|
} from "./chunk-FHFNOMNK.js";
|
|
@@ -42252,7 +42253,7 @@ ${contextBlock}`;
|
|
|
42252
42253
|
const strategy = config.votingStrategy ?? "higher_order";
|
|
42253
42254
|
await postProgress(config, "Vote", `Running consensus with ${strategy} strategy...`);
|
|
42254
42255
|
try {
|
|
42255
|
-
const { executeVoting } = await import("./consensus-vote-
|
|
42256
|
+
const { executeVoting } = await import("./consensus-vote-6FKSINXV.js");
|
|
42256
42257
|
const votingResult = await executeVoting(
|
|
42257
42258
|
{
|
|
42258
42259
|
proposal: plan.slice(0, 4e3),
|
|
@@ -43694,8 +43695,8 @@ var PipelineInputSchema = z93.object({
|
|
|
43694
43695
|
timeoutMs: z93.number().int().min(3e4).max(6e5).optional().describe("Max time per stage in ms (30000-600000). Default: varies by stage complexity"),
|
|
43695
43696
|
/** Stop after planning/voting (no implementation). */
|
|
43696
43697
|
dryRun: z93.boolean().default(false).describe("Stop after vote stage (no implementation)"),
|
|
43697
|
-
/**
|
|
43698
|
-
simulateVotes: z93.boolean().default(false).describe("
|
|
43698
|
+
/** TESTS ONLY — random output, must not be used for real decisions. (#2319) */
|
|
43699
|
+
simulateVotes: z93.boolean().default(false).describe("TESTS ONLY \u2014 random output, must not be used for real decisions (#2319)")
|
|
43699
43700
|
});
|
|
43700
43701
|
function buildOutput2(result) {
|
|
43701
43702
|
return {
|
|
@@ -43740,6 +43741,9 @@ function selectStageRegistry(template, task, agentStages) {
|
|
|
43740
43741
|
function registerPipelineTool(server, _deps) {
|
|
43741
43742
|
server.tool("run_pipeline", PipelineInputSchema.shape, async (args) => {
|
|
43742
43743
|
const input = PipelineInputSchema.parse(args);
|
|
43744
|
+
if (input.simulateVotes) {
|
|
43745
|
+
warnIfSimulatedOutsideTests("run_pipeline", createLogger({ tool: "run_pipeline" }));
|
|
43746
|
+
}
|
|
43743
43747
|
try {
|
|
43744
43748
|
const task = resolveTask(input.task, input.specFile);
|
|
43745
43749
|
const agentStages = createAgentStages({
|
|
@@ -53658,4 +53662,4 @@ export {
|
|
|
53658
53662
|
detectBackend,
|
|
53659
53663
|
createTaskTracker
|
|
53660
53664
|
};
|
|
53661
|
-
//# sourceMappingURL=chunk-
|
|
53665
|
+
//# sourceMappingURL=chunk-EB7LP5WD.js.map
|