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 +6 -1
- package/dist/{chunk-OZ36NFYJ.js → chunk-PSABUXMP.js} +15310 -9169
- package/dist/chunk-PSABUXMP.js.map +1 -0
- package/dist/chunk-U6PLZTD6.js +280 -0
- package/dist/chunk-U6PLZTD6.js.map +1 -0
- package/dist/cli.d.ts +104 -0
- package/dist/cli.js +9182 -33
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +9255 -4782
- package/dist/index.js +4826 -38
- package/dist/index.js.map +1 -1
- package/dist/pr-reviewer-helpers-44LFL3AT.js +33 -0
- package/dist/pr-reviewer-helpers-44LFL3AT.js.map +1 -0
- package/dist/workflows/templates/refactoring.yaml +101 -0
- package/dist/workflows/templates/security-audit.yaml +129 -0
- package/dist/workflows/templates/test-generation.yaml +129 -0
- package/package.json +17 -4
- package/src/workflows/templates/refactoring.yaml +101 -0
- package/src/workflows/templates/security-audit.yaml +129 -0
- package/src/workflows/templates/test-generation.yaml +129 -0
- package/dist/chunk-OZ36NFYJ.js.map +0 -1
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
|
|
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
|
```
|