agentic-qe 2.3.0 → 2.3.1

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/CHANGELOG.md CHANGED
@@ -7,6 +7,58 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [2.3.1] - 2025-12-08
11
+
12
+ ### Fixed
13
+
14
+ #### MCP Tools Validation (Issues #116, #120)
15
+ Fixed critical MCP tools validation that had degraded from 26% to 5% coverage. The validation script now properly recognizes:
16
+ - **Composite Handlers**: Phase2ToolsHandler (15 tools) and Phase3DomainToolsHandler (42 tools)
17
+ - **Streaming Handlers**: TestExecuteStreamHandler and CoverageAnalyzeStreamHandler in dedicated streaming directory
18
+
19
+ **Validation Results:**
20
+ - Before: 5% (4/82 tools valid)
21
+ - After: 100% (82/82 tools valid)
22
+
23
+ ### Added
24
+
25
+ #### Comprehensive Handler Test Coverage
26
+ Added 18 new test files with 300+ test cases following TDD RED phase patterns:
27
+
28
+ **Memory Handler Tests (6 files):**
29
+ - `memory-share.test.ts` - Memory sharing between agents
30
+ - `memory-backup.test.ts` - Backup and restore functionality
31
+ - `blackboard-post.test.ts` - Blackboard posting operations
32
+ - `blackboard-read.test.ts` - Blackboard reading with filters
33
+ - `consensus-propose.test.ts` - Consensus proposal creation
34
+ - `consensus-vote.test.ts` - Consensus voting mechanics
35
+
36
+ **Coordination Handler Tests (6 files):**
37
+ - `workflow-create.test.ts` - Workflow definition and validation
38
+ - `workflow-execute.test.ts` - Workflow execution with OODA loop
39
+ - `workflow-checkpoint.test.ts` - State checkpoint creation
40
+ - `workflow-resume.test.ts` - Checkpoint restoration
41
+ - `task-status.test.ts` - Task progress tracking
42
+ - `event-emit.test.ts` - Event emission system
43
+
44
+ **Test Handler Tests (4 files):**
45
+ - `test-execute.test.ts` - Test execution orchestration
46
+ - `test-execute-parallel.test.ts` - Parallel test execution
47
+ - `test-optimize-sublinear.test.ts` - O(log n) test optimization
48
+ - `test-report-comprehensive.test.ts` - Multi-format reporting
49
+
50
+ **Prediction/Learning Tests (2 files):**
51
+ - `deployment-readiness-check.test.ts` - Deployment readiness assessment
52
+ - `learning-handlers.test.ts` - All 4 learning tools coverage
53
+
54
+ ### Changed
55
+
56
+ #### Validation Script Improvements
57
+ - Added `COMPOSITE_HANDLERS` mapping for Phase2/Phase3 tool routing
58
+ - Added `STREAMING_HANDLER_FILES` mapping for streaming directory
59
+ - Enhanced `findHandler()` with streaming directory search
60
+ - Enhanced `findTests()` with composite handler test discovery
61
+
10
62
  ## [2.3.0] - 2025-12-08
11
63
 
12
64
  ### Added
package/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  <img alt="NPM Downloads" src="https://img.shields.io/npm/dw/agentic-qe">
10
10
 
11
11
 
12
- **Version 2.3.0** | [Changelog](CHANGELOG.md) | [Contributors](CONTRIBUTORS.md) | [Issues](https://github.com/proffesor-for-testing/agentic-qe/issues) | [Discussions](https://github.com/proffesor-for-testing/agentic-qe/discussions)
12
+ **Version 2.3.1** | [Changelog](CHANGELOG.md) | [Contributors](CONTRIBUTORS.md) | [Issues](https://github.com/proffesor-for-testing/agentic-qe/issues) | [Discussions](https://github.com/proffesor-for-testing/agentic-qe/discussions)
13
13
 
14
14
  > Agentic test automation with AI learning, real-time visualization, QUIC transport, testability scoring, OpenTelemetry observability, persistent event storage, constitutional AI governance, and intelligent model routing.
15
15
 
@@ -507,7 +507,7 @@ class HNSWVectorMemory {
507
507
  getImplementationInfo() {
508
508
  return {
509
509
  type: 'agentdb',
510
- version: '2.3.0',
510
+ version: '2.3.1',
511
511
  features: ['hnsw', 'vector-search', 'persistence', 'batch-operations'],
512
512
  };
513
513
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-qe",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
4
4
  "description": "Agentic Quality Engineering Fleet System - AI-driven quality management platform with 41 QE skills, learning, pattern reuse, ML-based flaky detection, Multi-Model Router (70-81% cost savings), streaming progress updates, 84 MCP tools with lazy loading (87% context reduction), and native TypeScript hooks",
5
5
  "main": "dist/cli/index.js",
6
6
  "types": "dist/cli/index.d.ts",