nexus-agents 2.0.1 → 2.6.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.
package/README.md CHANGED
@@ -171,7 +171,7 @@ The server exposes these MCP tools for integration:
171
171
  ```
172
172
  nexus-agents/
173
173
  ├── packages/
174
- │ └── nexus-agents/ # Main package (single consolidated package)
174
+ │ └── nexus-agents/ # Main package
175
175
  │ ├── src/
176
176
  │ │ ├── core/ # Shared types, Result<T,E>, errors, logger
177
177
  │ │ ├── config/ # Configuration loading and validation
@@ -179,6 +179,9 @@ nexus-agents/
179
179
  │ │ ├── agents/ # Agent framework (TechLead, Experts)
180
180
  │ │ ├── workflows/ # Workflow engine and templates
181
181
  │ │ ├── mcp/ # MCP server and tool definitions
182
+ │ │ ├── cli-adapters/ # External CLI integration (Claude/Gemini/Codex CLIs)
183
+ │ │ ├── context/ # Token counting, work balancing, memory
184
+ │ │ ├── consensus/ # Multi-agent voting and decisions
182
185
  │ │ ├── index.ts # Main exports
183
186
  │ │ └── cli.ts # CLI entry point
184
187
  │ └── package.json
@@ -188,6 +191,8 @@ nexus-agents/
188
191
  └── pnpm-workspace.yaml
189
192
  ```
190
193
 
194
+ See [ARCHITECTURE.md](../../ARCHITECTURE.md) for detailed module descriptions.
195
+
191
196
  ### Dependency Flow
192
197
 
193
198
  ```
@@ -366,8 +371,8 @@ We welcome contributions! Please see our guidelines:
366
371
  - Test coverage must be at least 80%
367
372
  - All code must pass linting and type checking
368
373
 
369
- See [CODING_STANDARDS.md](./CODING_STANDARDS.md) for detailed guidelines.
370
- See [CONTRIBUTING.md](./CONTRIBUTING.md) for contribution workflow.
374
+ See [CODING_STANDARDS.md](../../CODING_STANDARDS.md) for detailed guidelines.
375
+ See [CONTRIBUTING.md](../../CONTRIBUTING.md) for contribution workflow.
371
376
 
372
377
  ### Commit Convention
373
378
 
@@ -386,7 +391,7 @@ chore(scope): maintenance tasks
386
391
 
387
392
  ## License
388
393
 
389
- MIT - See [LICENSE](./LICENSE) for details.
394
+ MIT - See [LICENSE](../../LICENSE) for details.
390
395
 
391
396
  ---
392
397