agentic-qe 1.3.6 → 1.3.7

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 (3) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.md +10 -5
  3. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +5,36 @@ All notable changes to the Agentic QE project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.3.7] - 2025-10-30
9
+
10
+ ### 📚 Documentation Updates
11
+
12
+ #### README Improvements
13
+ - **Updated agent count**: 17 → 18 specialized agents (added qe-code-complexity)
14
+ - **Added qe-code-complexity agent** to initialization section
15
+ - **Added 34 QE skills library** to "What gets initialized" section
16
+ - **Updated Agent Types table**: Core Testing Agents (5 → 6 agents)
17
+ - **Added usage example** for code complexity analysis in Example 5
18
+
19
+ #### Agent Documentation
20
+ - **qe-code-complexity**: Educational agent demonstrating AQE Fleet architecture
21
+ - Cyclomatic complexity analysis
22
+ - Cognitive complexity metrics
23
+ - AI-powered refactoring recommendations
24
+ - Complete BaseAgent pattern demonstration
25
+
26
+ ### Changed
27
+ - README.md: Version 1.3.6 → 1.3.7
28
+ - Agent count references updated throughout documentation
29
+ - Skills library properly documented in initialization
30
+
31
+ ### Quality
32
+ - **Release Type**: Documentation-only patch release
33
+ - **Breaking Changes**: None
34
+ - **Migration Required**: None (automatic on npm install)
35
+
36
+ ---
37
+
8
38
  ## [1.3.6] - 2025-10-30
9
39
 
10
40
  ### 🔒 Security & UX Improvements
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  [![TypeScript](https://img.shields.io/badge/TypeScript-5.0+-blue.svg)](https://www.typescriptlang.org/)
8
8
  [![Node.js](https://img.shields.io/badge/Node.js-20+-green.svg)](https://nodejs.org/)
9
9
 
10
- **Version 1.3.6** | [Changelog](CHANGELOG.md) | [Issues](https://github.com/proffesor-for-testing/agentic-qe/issues) | [Discussions](https://github.com/proffesor-for-testing/agentic-qe/discussions)
10
+ **Version 1.3.7** | [Changelog](CHANGELOG.md) | [Issues](https://github.com/proffesor-for-testing/agentic-qe/issues) | [Discussions](https://github.com/proffesor-for-testing/agentic-qe/discussions)
11
11
 
12
12
  > Enterprise-grade test automation with AI learning, comprehensive skills library (34 QE skills), and 85.7% cost savings through intelligent model routing.
13
13
 
@@ -56,7 +56,8 @@ claude "Use qe-flaky-test-hunter to analyze the last 100 test runs and identify
56
56
  - ✅ Learning System (20% improvement target)
57
57
  - ✅ Pattern Bank (cross-project reuse)
58
58
  - ✅ ML Flaky Detection (100% accuracy)
59
- - ✅ 17 Specialized agent definitions
59
+ - ✅ 18 Specialized agent definitions (including qe-code-complexity)
60
+ - ✅ 34 World-class QE skills library
60
61
  - ✅ 8 AQE slash commands
61
62
  - ✅ Configuration directory
62
63
 
@@ -65,7 +66,7 @@ claude "Use qe-flaky-test-hunter to analyze the last 100 test runs and identify
65
66
  ## ✨ Features
66
67
 
67
68
  ### 🤖 Autonomous Agent Fleet
68
- - **17 Specialized Agents**: Expert agents for every QE domain (test generation, coverage analysis, security scanning, performance testing)
69
+ - **18 Specialized Agents**: Expert agents for every QE domain (test generation, coverage analysis, security scanning, performance testing, code complexity analysis)
69
70
  - **AI-Powered Coordination**: Event-driven architecture with intelligent task distribution
70
71
  - **Zero External Dependencies**: Native AQE hooks system (100-500x faster than external coordination)
71
72
  - **Scalable**: From single developer projects to enterprise-scale testing infrastructure
@@ -205,6 +206,9 @@ claude "Use qe-chaos-engineer to inject random failures and validate system resi
205
206
 
206
207
  # Flaky test detection with ML
207
208
  claude "Use qe-flaky-test-hunter to analyze the last 100 test runs and identify flaky tests with ML-powered root cause analysis"
209
+
210
+ # Code complexity analysis
211
+ claude "Use qe-code-complexity to analyze src/ directory and get refactoring recommendations for complex code"
208
212
  ```
209
213
 
210
214
  ### Example 6: Fleet Coordination at Scale
@@ -358,7 +362,7 @@ Model Usage:
358
362
  ## 🤖 Agent Types
359
363
 
360
364
  <details>
361
- <summary><b>Core Testing Agents (5 agents)</b></summary>
365
+ <summary><b>Core Testing Agents (6 agents)</b></summary>
362
366
 
363
367
  | Agent | Purpose | Key Features | Phase 2 Enhancements |
364
368
  |-------|---------|-------------|---------------------|
@@ -367,6 +371,7 @@ Model Usage:
367
371
  | **coverage-analyzer** | Real-time gap analysis | O(log n) algorithms, trend tracking | ✅ Learning, Pattern recommendations |
368
372
  | **quality-gate** | Intelligent validation | ML-driven decisions, risk assessment | ✅ Flaky test metrics |
369
373
  | **quality-analyzer** | Metrics analysis | ESLint, SonarQube, Lighthouse integration | - |
374
+ | **code-complexity** | Complexity analysis | Cyclomatic/cognitive metrics, refactoring recommendations | ✅ Educational agent |
370
375
 
371
376
  </details>
372
377
 
@@ -423,7 +428,7 @@ Model Usage:
423
428
 
424
429
  </details>
425
430
 
426
- **Total: 17 Agents** (16 QE-specific + 1 general-purpose)
431
+ **Total: 19 Agents** (18 QE-specific + 1 general-purpose)
427
432
 
428
433
  ---
429
434
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-qe",
3
- "version": "1.3.6",
3
+ "version": "1.3.7",
4
4
  "description": "Agentic Quality Engineering Fleet System - AI-driven quality management platform with 34 QE skills, learning, pattern reuse, ML-based flaky detection, Multi-Model Router (70-81% cost savings), streaming progress updates, 54 MCP tools, and native TypeScript hooks",
5
5
  "main": "dist/cli/index.js",
6
6
  "types": "dist/cli/index.d.ts",