nexus-agents 2.138.0 → 2.138.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/README.md CHANGED
@@ -99,20 +99,22 @@ Add to your Claude Desktop configuration (`~/Library/Application Support/Claude/
99
99
 
100
100
  The Orchestrator agent analyzes incoming tasks and delegates to specialized experts:
101
101
 
102
- | Expert | Specialization |
103
- | ------------------------- | ------------------------------------------------------ |
104
- | **Code Expert** | Implementation, debugging, optimization, refactoring |
105
- | **Architecture Expert** | System design, patterns, trade-offs, scalability |
106
- | **Security Expert** | Vulnerability analysis, secure coding, threat modeling |
107
- | **Documentation Expert** | Technical writing, API docs, code comments |
108
- | **Testing Expert** | Test strategies, coverage analysis, test generation |
109
- | **DevOps Expert** | CI/CD, deployment, containerization |
110
- | **Research Expert** | Literature review, state-of-the-art analysis |
111
- | **PM Expert** | Product management, requirements, priorities |
112
- | **UX Expert** | User experience, usability, accessibility |
113
- | **Infrastructure Expert** | Server management, bare metal, networking |
114
-
115
- Experts can collaborate on complex tasks. The Orchestrator combines their outputs into a single response.
102
+ | Expert | Specialization |
103
+ | ----------------------------- | ------------------------------------------------------ |
104
+ | **Code Expert** | Implementation, debugging, optimization, refactoring |
105
+ | **Architecture Expert** | System design, patterns, trade-offs, scalability |
106
+ | **Security Expert** | Vulnerability analysis, secure coding, threat modeling |
107
+ | **Documentation Expert** | Technical writing, API docs, code comments |
108
+ | **Testing Expert** | Test strategies, coverage analysis, test generation |
109
+ | **DevOps Expert** | CI/CD, deployment, containerization |
110
+ | **Research Expert** | Literature review, state-of-the-art analysis |
111
+ | **PM Expert** | Product management, requirements, priorities |
112
+ | **UX Expert** | User experience, usability, accessibility |
113
+ | **Infrastructure Expert** | Server management, bare metal, networking |
114
+ | **QA Expert** | Quality gates, test-plan review, defect triage |
115
+ | **Data-Visualization Expert** | Charts, diagrams, dashboards, data presentation |
116
+
117
+ All twelve expert types can collaborate on complex tasks. The Orchestrator combines their outputs into a single response.
116
118
 
117
119
  ### Model Adapters
118
120
 
@@ -155,7 +157,7 @@ steps:
155
157
 
156
158
  ### MCP Tools
157
159
 
158
- The server exposes 42 MCP tools for integration. Key tools include:
160
+ The server exposes 46 MCP tools for integration. Key tools include:
159
161
 
160
162
  | Tool | Description |
161
163
  | -------------------- | ---------------------------------------------- |
@@ -171,7 +173,7 @@ The server exposes 42 MCP tools for integration. Key tools include:
171
173
  | `repo_analyze` | Analyze GitHub repository structure |
172
174
  | `repo_security_plan` | Generate security scanning pipeline for a repo |
173
175
 
174
- See the root [README](../../README.md) for the complete tool list.
176
+ See the [root README](https://github.com/nexus-substrate/nexus-agents/blob/main/README.md) for the complete tool list.
175
177
 
176
178
  ---
177
179
 
@@ -204,7 +206,7 @@ nexus-agents/
204
206
  └── pnpm-workspace.yaml
205
207
  ```
206
208
 
207
- See [docs/architecture/README.md](../../docs/architecture/README.md) for detailed module descriptions.
209
+ See [docs/architecture/README.md](https://github.com/nexus-substrate/nexus-agents/blob/main/docs/architecture/README.md) for detailed module descriptions.
208
210
 
209
211
  ### Dependency Flow
210
212
 
@@ -280,7 +282,7 @@ import {
280
282
  // Create individual adapters
281
283
  const claude = createClaudeAdapter({ model: 'claude-sonnet-4-6' });
282
284
  const openai = createOpenAIAdapter({ model: 'gpt-4o' });
283
- const gemini = createGeminiAdapter({ model: 'gemini-1.5-pro' });
285
+ const gemini = createGeminiAdapter({ model: 'gemini-3-pro' });
284
286
  const ollama = createOllamaAdapter({ model: 'llama3:8b' });
285
287
 
286
288
  // Or use the factory
@@ -379,11 +381,11 @@ We welcome contributions! Please see our guidelines:
379
381
 
380
382
  - Files must be under 400 lines
381
383
  - Functions must be under 50 lines
382
- - Test coverage must be at least 80%
384
+ - Coverage thresholds: 60% statements/functions/lines, 50% branches (`vitest.config.ts`)
383
385
  - All code must pass linting and type checking
384
386
 
385
- See [CODING_STANDARDS.md](../../CODING_STANDARDS.md) for detailed guidelines.
386
- See [CONTRIBUTING.md](../../CONTRIBUTING.md) for contribution workflow.
387
+ See [CODING_STANDARDS.md](https://github.com/nexus-substrate/nexus-agents/blob/main/CODING_STANDARDS.md) for detailed guidelines.
388
+ See [CONTRIBUTING.md](https://github.com/nexus-substrate/nexus-agents/blob/main/CONTRIBUTING.md) for contribution workflow.
387
389
 
388
390
  ### Commit Convention
389
391
 
@@ -402,7 +404,7 @@ chore(scope): maintenance tasks
402
404
 
403
405
  ## License
404
406
 
405
- MIT - See [LICENSE](../../LICENSE) for details.
407
+ MIT - See [LICENSE](https://github.com/nexus-substrate/nexus-agents/blob/main/LICENSE) for details.
406
408
 
407
409
  ---
408
410
 
@@ -42,7 +42,7 @@ import {
42
42
  } from "./chunk-DHVMSIT5.js";
43
43
 
44
44
  // src/version.ts
45
- var VERSION = true ? "2.138.0" : "dev";
45
+ var VERSION = true ? "2.138.1" : "dev";
46
46
 
47
47
  // src/config/schemas-core.ts
48
48
  import { z } from "zod";
@@ -2132,7 +2132,7 @@ async function runDoctorFix(result) {
2132
2132
  writeLine2("\u2500".repeat(40));
2133
2133
  let fixCount = 0;
2134
2134
  if (!result.dataDirectory.rootExists || result.dataDirectory.subdirectories.some((d) => !d.exists || !d.writable)) {
2135
- const { runSetup } = await import("./setup-command-OHM6K4FM.js");
2135
+ const { runSetup } = await import("./setup-command-I3WAJY2X.js");
2136
2136
  const setupResult = runSetup({
2137
2137
  skipMcp: true,
2138
2138
  skipRules: true,
@@ -2245,4 +2245,4 @@ export {
2245
2245
  startStdioServer,
2246
2246
  closeServer
2247
2247
  };
2248
- //# sourceMappingURL=chunk-7KFI6R2M.js.map
2248
+ //# sourceMappingURL=chunk-BQA5LM72.js.map
@@ -18,7 +18,7 @@ import {
18
18
  DEFAULT_TASK_TTL_MS,
19
19
  DEFAULT_TOOL_RATE_LIMITS,
20
20
  clampTaskTtl
21
- } from "./chunk-7KFI6R2M.js";
21
+ } from "./chunk-BQA5LM72.js";
22
22
  import {
23
23
  executeExpert
24
24
  } from "./chunk-7QR2RTA4.js";
@@ -50892,4 +50892,4 @@ export {
50892
50892
  shutdownFeedbackSubscriber,
50893
50893
  createEventBusBridge
50894
50894
  };
50895
- //# sourceMappingURL=chunk-R5ZQCA37.js.map
50895
+ //# sourceMappingURL=chunk-D5FEGFJM.js.map
@@ -8,7 +8,7 @@ import {
8
8
  checkSqlite,
9
9
  defaultConfig,
10
10
  initDataDirectories
11
- } from "./chunk-7KFI6R2M.js";
11
+ } from "./chunk-BQA5LM72.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-52JN2RFG.js.map
2003
+ //# sourceMappingURL=chunk-HIVGUKLG.js.map
package/dist/cli.js CHANGED
@@ -22,7 +22,7 @@ import "./chunk-Q3EZN3Z2.js";
22
22
  import {
23
23
  setupCommandAsync,
24
24
  verifyCommand
25
- } from "./chunk-52JN2RFG.js";
25
+ } from "./chunk-HIVGUKLG.js";
26
26
  import "./chunk-7QEGSYSU.js";
27
27
  import {
28
28
  AuthHandler,
@@ -142,7 +142,7 @@ import {
142
142
  validateCommand,
143
143
  validateWorkflow,
144
144
  wrapInMarkdownFence
145
- } from "./chunk-R5ZQCA37.js";
145
+ } from "./chunk-D5FEGFJM.js";
146
146
  import "./chunk-5MMHH5WK.js";
147
147
  import "./chunk-RTBVZCLD.js";
148
148
  import "./chunk-HFOQKCD2.js";
@@ -170,7 +170,7 @@ import {
170
170
  loadConfig,
171
171
  runDoctor,
172
172
  validateNexusEnv
173
- } from "./chunk-7KFI6R2M.js";
173
+ } from "./chunk-BQA5LM72.js";
174
174
  import "./chunk-NYSOJBF5.js";
175
175
  import {
176
176
  shutdownExpertBridge
package/dist/index.js CHANGED
@@ -520,7 +520,7 @@ import {
520
520
  validateWorkflow,
521
521
  validateWorkflowDependencies,
522
522
  withLogging
523
- } from "./chunk-R5ZQCA37.js";
523
+ } from "./chunk-D5FEGFJM.js";
524
524
  import {
525
525
  OPENAI_MODELS,
526
526
  OPENAI_MODEL_ALIASES,
@@ -560,7 +560,7 @@ import {
560
560
  getKnownNexusVarNames,
561
561
  startStdioServer,
562
562
  validateNexusEnv
563
- } from "./chunk-7KFI6R2M.js";
563
+ } from "./chunk-BQA5LM72.js";
564
564
  import {
565
565
  CliCircuitBreakerIntegration,
566
566
  createCliCircuitBreakerIntegration
@@ -8,9 +8,9 @@ import {
8
8
  runWizard,
9
9
  setupCommand,
10
10
  setupCommandAsync
11
- } from "./chunk-52JN2RFG.js";
11
+ } from "./chunk-HIVGUKLG.js";
12
12
  import "./chunk-7QEGSYSU.js";
13
- import "./chunk-7KFI6R2M.js";
13
+ import "./chunk-BQA5LM72.js";
14
14
  import "./chunk-NUBSJGQZ.js";
15
15
  import "./chunk-6T3EPABN.js";
16
16
  import "./chunk-ZM4O442V.js";
@@ -35,4 +35,4 @@ export {
35
35
  setupCommand,
36
36
  setupCommandAsync
37
37
  };
38
- //# sourceMappingURL=setup-command-OHM6K4FM.js.map
38
+ //# sourceMappingURL=setup-command-I3WAJY2X.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nexus-agents",
3
- "version": "2.138.0",
3
+ "version": "2.138.1",
4
4
  "description": "Governance substrate for AI coding agents — adversarial PR review, drift-detected rules, tamper-evident audit, and closed-loop outcome routing for Claude, Codex, Gemini, and OpenCode",
5
5
  "mcpName": "io.github.nexus-substrate/nexus-agents",
6
6
  "license": "MIT",