nexus-agents 2.70.0 → 2.71.0

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.
Files changed (30) hide show
  1. package/dist/{chunk-L4XSIHF5.js → chunk-3BKVYSY6.js} +2 -2
  2. package/dist/{chunk-SU4667UB.js → chunk-7LHQBMBM.js} +2 -2
  3. package/dist/{chunk-5RMZQEP5.js → chunk-AGVLFRN7.js} +1247 -384
  4. package/dist/chunk-AGVLFRN7.js.map +1 -0
  5. package/dist/{chunk-7QWNOE23.js → chunk-KJCSRP34.js} +2 -2
  6. package/dist/{chunk-7ZPYV4HO.js → chunk-NER7H3RJ.js} +1 -1
  7. package/dist/chunk-NER7H3RJ.js.map +1 -0
  8. package/dist/{chunk-UMLBVSW4.js → chunk-POQQ7A5E.js} +1 -1
  9. package/dist/chunk-POQQ7A5E.js.map +1 -0
  10. package/dist/{chunk-PPGX45YS.js → chunk-U6BK5DQU.js} +3 -3
  11. package/dist/cli.js +90 -625
  12. package/dist/cli.js.map +1 -1
  13. package/dist/{consensus-vote-WUGHRBYE.js → consensus-vote-EXWACBMR.js} +2 -2
  14. package/dist/{factory-BHHC6C7W.js → factory-H5BYL4V5.js} +3 -3
  15. package/dist/index.d.ts +1 -1
  16. package/dist/index.js +7 -7
  17. package/dist/{issue-triage-TXQ7J6GG.js → issue-triage-4SEP4WID.js} +3 -3
  18. package/dist/{setup-command-VMN3XXZN.js → setup-command-5VGIQETA.js} +3 -3
  19. package/package.json +1 -1
  20. package/dist/chunk-5RMZQEP5.js.map +0 -1
  21. package/dist/chunk-7ZPYV4HO.js.map +0 -1
  22. package/dist/chunk-UMLBVSW4.js.map +0 -1
  23. /package/dist/{chunk-L4XSIHF5.js.map → chunk-3BKVYSY6.js.map} +0 -0
  24. /package/dist/{chunk-SU4667UB.js.map → chunk-7LHQBMBM.js.map} +0 -0
  25. /package/dist/{chunk-7QWNOE23.js.map → chunk-KJCSRP34.js.map} +0 -0
  26. /package/dist/{chunk-PPGX45YS.js.map → chunk-U6BK5DQU.js.map} +0 -0
  27. /package/dist/{consensus-vote-WUGHRBYE.js.map → consensus-vote-EXWACBMR.js.map} +0 -0
  28. /package/dist/{factory-BHHC6C7W.js.map → factory-H5BYL4V5.js.map} +0 -0
  29. /package/dist/{issue-triage-TXQ7J6GG.js.map → issue-triage-4SEP4WID.js.map} +0 -0
  30. /package/dist/{setup-command-VMN3XXZN.js.map → setup-command-5VGIQETA.js.map} +0 -0
@@ -5,7 +5,7 @@ import {
5
5
  executeVoting,
6
6
  registerConsensusVoteTool,
7
7
  resetCorrelationTracker
8
- } from "./chunk-UMLBVSW4.js";
8
+ } from "./chunk-POQQ7A5E.js";
9
9
  import "./chunk-VGZJIR22.js";
10
10
  import "./chunk-L2LQ3TSV.js";
11
11
  import "./chunk-XATH462F.js";
@@ -25,4 +25,4 @@ export {
25
25
  registerConsensusVoteTool,
26
26
  resetCorrelationTracker
27
27
  };
28
- //# sourceMappingURL=consensus-vote-WUGHRBYE.js.map
28
+ //# sourceMappingURL=consensus-vote-EXWACBMR.js.map
@@ -1,9 +1,9 @@
1
1
  import {
2
2
  createGitHubProvider,
3
3
  createScmProvider
4
- } from "./chunk-L4XSIHF5.js";
4
+ } from "./chunk-3BKVYSY6.js";
5
5
  import "./chunk-E66KFRSJ.js";
6
- import "./chunk-7ZPYV4HO.js";
6
+ import "./chunk-NER7H3RJ.js";
7
7
  import "./chunk-7OBFO4GF.js";
8
8
  import "./chunk-LJT65EA7.js";
9
9
  import "./chunk-FDNWRZNJ.js";
@@ -12,4 +12,4 @@ export {
12
12
  createGitHubProvider,
13
13
  createScmProvider
14
14
  };
15
- //# sourceMappingURL=factory-BHHC6C7W.js.map
15
+ //# sourceMappingURL=factory-H5BYL4V5.js.map
package/dist/index.d.ts CHANGED
@@ -34088,7 +34088,7 @@ declare function getTokenEnvVars(platform?: ScmPlatform): readonly string[];
34088
34088
  *
34089
34089
  * Unified GitHub provider using gh CLI. Implements IScmProvider with
34090
34090
  * Result-based error handling. Consolidates the two previous GitHub
34091
- * clients (dogfooding/github-client.ts and workflows/self-development/github-client.ts).
34091
+ * clients (dogfooding/github-client.ts; the self-development one was deleted in #2402).
34092
34092
  *
34093
34093
  * @module scm/github-provider
34094
34094
  * (Source: Issue #1136 — Centralized SCM Provider Module)
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  createGitHubProvider,
3
3
  createScmProvider
4
- } from "./chunk-L4XSIHF5.js";
4
+ } from "./chunk-3BKVYSY6.js";
5
5
  import {
6
6
  ALLOWED_COMMANDS,
7
7
  ARTIFACT_TYPES,
@@ -641,7 +641,7 @@ import {
641
641
  validateWorkflowDependencies,
642
642
  withLogging,
643
643
  writePredictions
644
- } from "./chunk-5RMZQEP5.js";
644
+ } from "./chunk-AGVLFRN7.js";
645
645
  import {
646
646
  SharedMemoryStore
647
647
  } from "./chunk-ED6VQWNG.js";
@@ -769,7 +769,7 @@ import {
769
769
  validateApiKeyPresence,
770
770
  validateToolInput,
771
771
  withTimeout
772
- } from "./chunk-UMLBVSW4.js";
772
+ } from "./chunk-POQQ7A5E.js";
773
773
  import {
774
774
  PROVIDER_ENV_KEYS
775
775
  } from "./chunk-VGZJIR22.js";
@@ -806,11 +806,11 @@ import {
806
806
  sanitizeInput,
807
807
  validateAgentAction,
808
808
  validateCorroboration
809
- } from "./chunk-7QWNOE23.js";
809
+ } from "./chunk-KJCSRP34.js";
810
810
  import {
811
811
  GitHubProvider,
812
812
  ScmError
813
- } from "./chunk-7ZPYV4HO.js";
813
+ } from "./chunk-NER7H3RJ.js";
814
814
  import {
815
815
  FALLBACK_SCANNER_DATA,
816
816
  buildPlanFromAnalysis,
@@ -851,7 +851,7 @@ import {
851
851
  resolveFallback,
852
852
  startStdioServer,
853
853
  validateNexusEnv
854
- } from "./chunk-PPGX45YS.js";
854
+ } from "./chunk-U6BK5DQU.js";
855
855
  import {
856
856
  DEFAULTS
857
857
  } from "./chunk-L2LQ3TSV.js";
@@ -6694,7 +6694,7 @@ function buildVotingInput(plan, config) {
6694
6694
  }
6695
6695
  async function executeSingleVote(plan, config, log) {
6696
6696
  try {
6697
- const { executeVoting } = await import("./consensus-vote-WUGHRBYE.js");
6697
+ const { executeVoting } = await import("./consensus-vote-EXWACBMR.js");
6698
6698
  const input = buildVotingInput(plan, config);
6699
6699
  const result = await executeVoting(input, log);
6700
6700
  return parseVotingResult(result);
@@ -2,8 +2,8 @@ import {
2
2
  IssueTriage,
3
3
  createIssueTriage,
4
4
  formatTriageComment
5
- } from "./chunk-7QWNOE23.js";
6
- import "./chunk-7ZPYV4HO.js";
5
+ } from "./chunk-KJCSRP34.js";
6
+ import "./chunk-NER7H3RJ.js";
7
7
  import "./chunk-7OBFO4GF.js";
8
8
  import "./chunk-LJT65EA7.js";
9
9
  import "./chunk-FDNWRZNJ.js";
@@ -13,4 +13,4 @@ export {
13
13
  createIssueTriage,
14
14
  formatTriageComment
15
15
  };
16
- //# sourceMappingURL=issue-triage-TXQ7J6GG.js.map
16
+ //# sourceMappingURL=issue-triage-4SEP4WID.js.map
@@ -7,9 +7,9 @@ import {
7
7
  runWizard,
8
8
  setupCommand,
9
9
  setupCommandAsync
10
- } from "./chunk-SU4667UB.js";
10
+ } from "./chunk-7LHQBMBM.js";
11
11
  import "./chunk-OF7CYMMA.js";
12
- import "./chunk-PPGX45YS.js";
12
+ import "./chunk-U6BK5DQU.js";
13
13
  import "./chunk-L2LQ3TSV.js";
14
14
  import "./chunk-NUBSJGQZ.js";
15
15
  import "./chunk-XATH462F.js";
@@ -30,4 +30,4 @@ export {
30
30
  setupCommand,
31
31
  setupCommandAsync
32
32
  };
33
- //# sourceMappingURL=setup-command-VMN3XXZN.js.map
33
+ //# sourceMappingURL=setup-command-5VGIQETA.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nexus-agents",
3
- "version": "2.70.0",
3
+ "version": "2.71.0",
4
4
  "description": "Intelligent orchestration platform for AI coding tools — routes tasks to the best model, learns from outcomes, and enforces quality through multi-model consensus",
5
5
  "mcpName": "io.github.williamzujkowski/nexus-agents",
6
6
  "license": "MIT",