agentic-flow 1.2.0 → 1.2.2
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 +25 -3
- package/dist/agents/claudeAgent.js +7 -5
- package/dist/cli-proxy.js +74 -5
- package/dist/proxy/anthropic-to-onnx.js +213 -0
- package/dist/utils/.claude-flow/metrics/agent-metrics.json +1 -0
- package/dist/utils/.claude-flow/metrics/performance.json +9 -0
- package/dist/utils/.claude-flow/metrics/task-metrics.json +10 -0
- package/dist/utils/cli.js +9 -1
- package/dist/utils/modelOptimizer.js +18 -2
- package/docs/.claude-flow/metrics/performance.json +1 -1
- package/docs/.claude-flow/metrics/task-metrics.json +3 -3
- package/docs/INDEX.md +44 -7
- package/docs/ONNX-PROXY-IMPLEMENTATION.md +254 -0
- package/docs/guides/PROXY-ARCHITECTURE-AND-EXTENSION.md +708 -0
- package/docs/mcp-validation/README.md +43 -0
- package/docs/releases/HOTFIX-v1.2.1.md +315 -0
- package/docs/releases/PUBLISH-COMPLETE-v1.2.0.md +308 -0
- package/docs/releases/README.md +18 -0
- package/docs/testing/README.md +46 -0
- package/package.json +2 -2
- /package/docs/{RELEASE-SUMMARY-v1.1.14-beta.1.md → archived/RELEASE-SUMMARY-v1.1.14-beta.1.md} +0 -0
- /package/docs/{V1.1.14-BETA-READY.md → archived/V1.1.14-BETA-READY.md} +0 -0
- /package/docs/{NPM-PUBLISH-GUIDE-v1.2.0.md → releases/NPM-PUBLISH-GUIDE-v1.2.0.md} +0 -0
- /package/docs/{RELEASE-v1.2.0.md → releases/RELEASE-v1.2.0.md} +0 -0
- /package/docs/{AGENT-SYSTEM-VALIDATION.md → testing/AGENT-SYSTEM-VALIDATION.md} +0 -0
- /package/docs/{FINAL-TESTING-SUMMARY.md → testing/FINAL-TESTING-SUMMARY.md} +0 -0
- /package/docs/{REGRESSION-TEST-RESULTS.md → testing/REGRESSION-TEST-RESULTS.md} +0 -0
- /package/docs/{STREAMING-AND-MCP-VALIDATION.md → testing/STREAMING-AND-MCP-VALIDATION.md} +0 -0
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# Testing & Validation Documentation
|
|
2
|
+
|
|
3
|
+
Comprehensive testing reports, validation summaries, and quality assurance documentation.
|
|
4
|
+
|
|
5
|
+
## Current Test Reports
|
|
6
|
+
|
|
7
|
+
- [Agent System Validation](AGENT-SYSTEM-VALIDATION.md) - Multi-agent system testing
|
|
8
|
+
- [Final Testing Summary](FINAL-TESTING-SUMMARY.md) - Comprehensive test coverage report
|
|
9
|
+
- [Regression Test Results](REGRESSION-TEST-RESULTS.md) - Regression testing outcomes
|
|
10
|
+
- [Streaming and MCP Validation](STREAMING-AND-MCP-VALIDATION.md) - MCP integration tests
|
|
11
|
+
|
|
12
|
+
## Test Categories
|
|
13
|
+
|
|
14
|
+
### Agent System Tests
|
|
15
|
+
- Multi-agent coordination
|
|
16
|
+
- Swarm topology validation
|
|
17
|
+
- Task orchestration
|
|
18
|
+
- Memory and state management
|
|
19
|
+
|
|
20
|
+
### Integration Tests
|
|
21
|
+
- MCP server integration
|
|
22
|
+
- Provider compatibility (Anthropic, OpenRouter, ONNX, Gemini)
|
|
23
|
+
- Streaming functionality
|
|
24
|
+
- Real-time coordination
|
|
25
|
+
|
|
26
|
+
### Regression Tests
|
|
27
|
+
- Backward compatibility
|
|
28
|
+
- Performance benchmarks
|
|
29
|
+
- API contract validation
|
|
30
|
+
|
|
31
|
+
## Running Tests
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
# Run all tests
|
|
35
|
+
npm test
|
|
36
|
+
|
|
37
|
+
# Run specific test suite
|
|
38
|
+
npm test -- --grep "agent"
|
|
39
|
+
|
|
40
|
+
# Run with coverage
|
|
41
|
+
npm run test:coverage
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Historical Test Reports
|
|
45
|
+
|
|
46
|
+
Older validation reports can be found in the [validation/](../validation/) and [archived/](../archived/) directories.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-flow",
|
|
3
|
-
"version": "1.2.
|
|
4
|
-
"description": "Production-ready AI agent orchestration platform with 66 specialized agents, 213 MCP tools, and autonomous multi-agent swarms. Built by @ruvnet with Claude Agent SDK, neural networks, memory persistence, GitHub integration, and distributed consensus protocols.
|
|
3
|
+
"version": "1.2.2",
|
|
4
|
+
"description": "Production-ready AI agent orchestration platform with 66 specialized agents, 213 MCP tools, and autonomous multi-agent swarms. Built by @ruvnet with Claude Agent SDK, neural networks, memory persistence, GitHub integration, and distributed consensus protocols.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
/package/docs/{RELEASE-SUMMARY-v1.1.14-beta.1.md → archived/RELEASE-SUMMARY-v1.1.14-beta.1.md}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|