nexus-agents 2.0.1 → 2.1.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
  ```