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 +9 -4
- package/dist/chunk-7YMTGMHI.js +45418 -0
- package/dist/chunk-7YMTGMHI.js.map +1 -0
- package/dist/chunk-DGUM43GV.js +11 -0
- package/dist/chunk-DGUM43GV.js.map +1 -0
- package/dist/chunk-U6PLZTD6.js +280 -0
- package/dist/chunk-U6PLZTD6.js.map +1 -0
- package/dist/cli.d.ts +130 -0
- package/dist/cli.js +21069 -39
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +24465 -6629
- package/dist/index.js +5250 -38
- package/dist/index.js.map +1 -1
- package/dist/pr-reviewer-helpers-EVFQKF5W.js +34 -0
- package/dist/pr-reviewer-helpers-EVFQKF5W.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 +24 -9
- 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 +0 -13142
- 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
|
```
|
|
@@ -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](
|
|
370
|
-
See [CONTRIBUTING.md](
|
|
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](
|
|
394
|
+
MIT - See [LICENSE](../../LICENSE) for details.
|
|
390
395
|
|
|
391
396
|
---
|
|
392
397
|
|