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.
Files changed (28) hide show
  1. package/README.md +25 -3
  2. package/dist/agents/claudeAgent.js +7 -5
  3. package/dist/cli-proxy.js +74 -5
  4. package/dist/proxy/anthropic-to-onnx.js +213 -0
  5. package/dist/utils/.claude-flow/metrics/agent-metrics.json +1 -0
  6. package/dist/utils/.claude-flow/metrics/performance.json +9 -0
  7. package/dist/utils/.claude-flow/metrics/task-metrics.json +10 -0
  8. package/dist/utils/cli.js +9 -1
  9. package/dist/utils/modelOptimizer.js +18 -2
  10. package/docs/.claude-flow/metrics/performance.json +1 -1
  11. package/docs/.claude-flow/metrics/task-metrics.json +3 -3
  12. package/docs/INDEX.md +44 -7
  13. package/docs/ONNX-PROXY-IMPLEMENTATION.md +254 -0
  14. package/docs/guides/PROXY-ARCHITECTURE-AND-EXTENSION.md +708 -0
  15. package/docs/mcp-validation/README.md +43 -0
  16. package/docs/releases/HOTFIX-v1.2.1.md +315 -0
  17. package/docs/releases/PUBLISH-COMPLETE-v1.2.0.md +308 -0
  18. package/docs/releases/README.md +18 -0
  19. package/docs/testing/README.md +46 -0
  20. package/package.json +2 -2
  21. /package/docs/{RELEASE-SUMMARY-v1.1.14-beta.1.md → archived/RELEASE-SUMMARY-v1.1.14-beta.1.md} +0 -0
  22. /package/docs/{V1.1.14-BETA-READY.md → archived/V1.1.14-BETA-READY.md} +0 -0
  23. /package/docs/{NPM-PUBLISH-GUIDE-v1.2.0.md → releases/NPM-PUBLISH-GUIDE-v1.2.0.md} +0 -0
  24. /package/docs/{RELEASE-v1.2.0.md → releases/RELEASE-v1.2.0.md} +0 -0
  25. /package/docs/{AGENT-SYSTEM-VALIDATION.md → testing/AGENT-SYSTEM-VALIDATION.md} +0 -0
  26. /package/docs/{FINAL-TESTING-SUMMARY.md → testing/FINAL-TESTING-SUMMARY.md} +0 -0
  27. /package/docs/{REGRESSION-TEST-RESULTS.md → testing/REGRESSION-TEST-RESULTS.md} +0 -0
  28. /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.0",
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. v1.2.0: NEW - Add custom MCP servers via CLI without code editing! Compatible with Claude Desktop config format.",
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": {