agentic-qe 2.0.0 → 2.1.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/.claude/agents/qx-partner.md +17 -4
- package/.claude/skills/accessibility-testing/SKILL.md +144 -692
- package/.claude/skills/agentic-quality-engineering/SKILL.md +176 -529
- package/.claude/skills/api-testing-patterns/SKILL.md +180 -560
- package/.claude/skills/brutal-honesty-review/SKILL.md +113 -603
- package/.claude/skills/bug-reporting-excellence/SKILL.md +116 -517
- package/.claude/skills/chaos-engineering-resilience/SKILL.md +127 -72
- package/.claude/skills/cicd-pipeline-qe-orchestrator/SKILL.md +209 -404
- package/.claude/skills/code-review-quality/SKILL.md +158 -608
- package/.claude/skills/compatibility-testing/SKILL.md +148 -38
- package/.claude/skills/compliance-testing/SKILL.md +132 -63
- package/.claude/skills/consultancy-practices/SKILL.md +114 -446
- package/.claude/skills/context-driven-testing/SKILL.md +117 -381
- package/.claude/skills/contract-testing/SKILL.md +176 -141
- package/.claude/skills/database-testing/SKILL.md +137 -130
- package/.claude/skills/exploratory-testing-advanced/SKILL.md +160 -629
- package/.claude/skills/holistic-testing-pact/SKILL.md +140 -188
- package/.claude/skills/localization-testing/SKILL.md +145 -33
- package/.claude/skills/mobile-testing/SKILL.md +132 -448
- package/.claude/skills/mutation-testing/SKILL.md +147 -41
- package/.claude/skills/performance-testing/SKILL.md +200 -546
- package/.claude/skills/quality-metrics/SKILL.md +164 -519
- package/.claude/skills/refactoring-patterns/SKILL.md +132 -699
- package/.claude/skills/regression-testing/SKILL.md +120 -926
- package/.claude/skills/risk-based-testing/SKILL.md +157 -660
- package/.claude/skills/security-testing/SKILL.md +199 -538
- package/.claude/skills/sherlock-review/SKILL.md +163 -699
- package/.claude/skills/shift-left-testing/SKILL.md +161 -465
- package/.claude/skills/shift-right-testing/SKILL.md +161 -519
- package/.claude/skills/six-thinking-hats/SKILL.md +175 -1110
- package/.claude/skills/skills-manifest.json +71 -20
- package/.claude/skills/tdd-london-chicago/SKILL.md +131 -448
- package/.claude/skills/technical-writing/SKILL.md +103 -154
- package/.claude/skills/test-automation-strategy/SKILL.md +166 -772
- package/.claude/skills/test-data-management/SKILL.md +126 -910
- package/.claude/skills/test-design-techniques/SKILL.md +179 -89
- package/.claude/skills/test-environment-management/SKILL.md +136 -91
- package/.claude/skills/test-reporting-analytics/SKILL.md +169 -92
- package/.claude/skills/testability-scoring/SKILL.md +172 -538
- package/.claude/skills/testability-scoring/scripts/generate-html-report.js +0 -0
- package/.claude/skills/visual-testing-advanced/SKILL.md +155 -78
- package/.claude/skills/xp-practices/SKILL.md +151 -587
- package/CHANGELOG.md +48 -0
- package/README.md +23 -16
- package/dist/agents/QXPartnerAgent.d.ts +8 -1
- package/dist/agents/QXPartnerAgent.d.ts.map +1 -1
- package/dist/agents/QXPartnerAgent.js +1174 -112
- package/dist/agents/QXPartnerAgent.js.map +1 -1
- package/dist/agents/lifecycle/AgentLifecycleManager.d.ts.map +1 -1
- package/dist/agents/lifecycle/AgentLifecycleManager.js +34 -31
- package/dist/agents/lifecycle/AgentLifecycleManager.js.map +1 -1
- package/dist/cli/commands/init-claude-md-template.d.ts.map +1 -1
- package/dist/cli/commands/init-claude-md-template.js +14 -0
- package/dist/cli/commands/init-claude-md-template.js.map +1 -1
- package/dist/core/SwarmCoordinator.d.ts +180 -0
- package/dist/core/SwarmCoordinator.d.ts.map +1 -0
- package/dist/core/SwarmCoordinator.js +473 -0
- package/dist/core/SwarmCoordinator.js.map +1 -0
- package/dist/core/metrics/MetricsAggregator.d.ts +228 -0
- package/dist/core/metrics/MetricsAggregator.d.ts.map +1 -0
- package/dist/core/metrics/MetricsAggregator.js +482 -0
- package/dist/core/metrics/MetricsAggregator.js.map +1 -0
- package/dist/core/metrics/index.d.ts +5 -0
- package/dist/core/metrics/index.d.ts.map +1 -0
- package/dist/core/metrics/index.js +11 -0
- package/dist/core/metrics/index.js.map +1 -0
- package/dist/core/optimization/SwarmOptimizer.d.ts +5 -0
- package/dist/core/optimization/SwarmOptimizer.d.ts.map +1 -1
- package/dist/core/optimization/SwarmOptimizer.js +17 -0
- package/dist/core/optimization/SwarmOptimizer.js.map +1 -1
- package/dist/core/orchestration/AdaptiveScheduler.d.ts +190 -0
- package/dist/core/orchestration/AdaptiveScheduler.d.ts.map +1 -0
- package/dist/core/orchestration/AdaptiveScheduler.js +460 -0
- package/dist/core/orchestration/AdaptiveScheduler.js.map +1 -0
- package/dist/core/orchestration/WorkflowOrchestrator.d.ts +13 -0
- package/dist/core/orchestration/WorkflowOrchestrator.d.ts.map +1 -1
- package/dist/core/orchestration/WorkflowOrchestrator.js +32 -0
- package/dist/core/orchestration/WorkflowOrchestrator.js.map +1 -1
- package/dist/core/recovery/CircuitBreaker.d.ts +176 -0
- package/dist/core/recovery/CircuitBreaker.d.ts.map +1 -0
- package/dist/core/recovery/CircuitBreaker.js +382 -0
- package/dist/core/recovery/CircuitBreaker.js.map +1 -0
- package/dist/core/recovery/RecoveryOrchestrator.d.ts +186 -0
- package/dist/core/recovery/RecoveryOrchestrator.d.ts.map +1 -0
- package/dist/core/recovery/RecoveryOrchestrator.js +476 -0
- package/dist/core/recovery/RecoveryOrchestrator.js.map +1 -0
- package/dist/core/recovery/RetryStrategy.d.ts +127 -0
- package/dist/core/recovery/RetryStrategy.d.ts.map +1 -0
- package/dist/core/recovery/RetryStrategy.js +314 -0
- package/dist/core/recovery/RetryStrategy.js.map +1 -0
- package/dist/core/recovery/index.d.ts +8 -0
- package/dist/core/recovery/index.d.ts.map +1 -0
- package/dist/core/recovery/index.js +27 -0
- package/dist/core/recovery/index.js.map +1 -0
- package/dist/core/skills/DependencyResolver.d.ts +99 -0
- package/dist/core/skills/DependencyResolver.d.ts.map +1 -0
- package/dist/core/skills/DependencyResolver.js +260 -0
- package/dist/core/skills/DependencyResolver.js.map +1 -0
- package/dist/core/skills/ManifestGenerator.d.ts +114 -0
- package/dist/core/skills/ManifestGenerator.d.ts.map +1 -0
- package/dist/core/skills/ManifestGenerator.js +449 -0
- package/dist/core/skills/ManifestGenerator.js.map +1 -0
- package/dist/core/skills/index.d.ts +9 -0
- package/dist/core/skills/index.d.ts.map +1 -0
- package/dist/core/skills/index.js +24 -0
- package/dist/core/skills/index.js.map +1 -0
- package/dist/mcp/server.d.ts +9 -9
- package/dist/mcp/server.d.ts.map +1 -1
- package/dist/mcp/server.js +1 -2
- package/dist/mcp/server.js.map +1 -1
- package/dist/types/qx.d.ts +39 -7
- package/dist/types/qx.d.ts.map +1 -1
- package/dist/types/qx.js.map +1 -1
- package/dist/visualization/api/RestEndpoints.js +1 -1
- package/dist/visualization/api/RestEndpoints.js.map +1 -1
- package/package.json +13 -55
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,54 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.1.0] - 2025-12-03
|
|
11
|
+
|
|
12
|
+
### 🚀 Comprehensive QX Analysis & Skills Optimization
|
|
13
|
+
|
|
14
|
+
This release delivers significant improvements to QX (Quality Experience) analysis, optimized skills format across all 38 QE skills, and enhanced agent coordination capabilities.
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
|
|
18
|
+
#### Comprehensive QX Analysis (PR #104 by @fndlalit)
|
|
19
|
+
- **23+ QX Heuristics**: Detailed findings, issues, and recommendations per heuristic
|
|
20
|
+
- **Domain-Specific Failure Detection**: Automatic detection for e-commerce, SaaS, content/blog, and form-heavy sites
|
|
21
|
+
- **Contextual Page Content Extraction**: Real page content analysis (headings, navigation, buttons, forms, links, main content)
|
|
22
|
+
- **Rule of Three Problem Analysis**: Ensures minimum 3 potential failure modes identified per issue
|
|
23
|
+
- **Comprehensive QX Formatter**: `scripts/contextualizers/comprehensive-qx-formatter.js` for detailed reports matching manual analysis structure
|
|
24
|
+
|
|
25
|
+
#### Skills Optimization (PR #102)
|
|
26
|
+
- **38 QE Skills Optimized**: Agent-focused format with 40-60% token reduction
|
|
27
|
+
- **`<default_to_action>` Blocks**: Immediate actionable guidance at top of each skill
|
|
28
|
+
- **Quick Reference Cards**: Tables and command examples for rapid lookup
|
|
29
|
+
- **Fleet Coordination Hints**: Memory namespace organization and `FleetManager.coordinate()` patterns
|
|
30
|
+
- **Standardized Frontmatter**: `tokenEstimate`, `agents`, `implementation_status`, `optimization_version`, `last_optimized`
|
|
31
|
+
|
|
32
|
+
#### Testability Scoring Skill v2.1
|
|
33
|
+
- Optimized skill format with proper metadata
|
|
34
|
+
- Fleet coordination and memory namespace hints
|
|
35
|
+
- Agent integration examples
|
|
36
|
+
- Contributor attribution (`@fndlalit`)
|
|
37
|
+
|
|
38
|
+
### Changed
|
|
39
|
+
|
|
40
|
+
#### QX Partner Agent v2.1
|
|
41
|
+
- Updated implementation status to v2.1 with new capabilities
|
|
42
|
+
- Added domain-specific failure detection capability
|
|
43
|
+
- Added contextual page content extraction capability
|
|
44
|
+
- Added comprehensive report formatting capability
|
|
45
|
+
- Added Rule of Three problem analysis capability
|
|
46
|
+
- Enhanced memory namespace with new coordination paths
|
|
47
|
+
|
|
48
|
+
#### Dependency Updates
|
|
49
|
+
- **@modelcontextprotocol/sdk**: Bumped version (PR #105)
|
|
50
|
+
|
|
51
|
+
### Contributors
|
|
52
|
+
|
|
53
|
+
- **@fndlalit**: Comprehensive QX Analysis with detailed heuristics (PR #104)
|
|
54
|
+
- **Dependabot**: @modelcontextprotocol/sdk dependency update (PR #105)
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
10
58
|
## [2.0.0] - 2025-12-02
|
|
11
59
|
|
|
12
60
|
### 🚀 Major Release: Agentic QE Fleet v2
|
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.
|
|
12
|
+
**Version 2.1.0** | [Changelog](CHANGELOG.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
|
|
|
@@ -672,28 +672,35 @@ The test generator automatically delegates to subagents for a complete RED-GREEN
|
|
|
672
672
|
|
|
673
673
|
---
|
|
674
674
|
|
|
675
|
-
## 📝 What's New in
|
|
675
|
+
## 📝 What's New in v2.1.0
|
|
676
676
|
|
|
677
|
-
|
|
677
|
+
🚀 **Comprehensive QX Analysis & Skills Optimization** (2025-12-03)
|
|
678
678
|
|
|
679
|
-
This release delivers
|
|
679
|
+
This release delivers comprehensive QX (Quality Experience) analysis improvements, optimized skills format, and enhanced agent coordination.
|
|
680
680
|
|
|
681
|
-
### Key
|
|
681
|
+
### Key Features
|
|
682
|
+
|
|
683
|
+
- **Comprehensive QX Analysis** (PR #104 by @fndlalit): 23+ heuristics with detailed findings, domain-specific failure detection (e-commerce, SaaS, content/blog, forms), contextual page content extraction
|
|
684
|
+
- **38 QE Skills Optimized** (PR #102): Agent-focused format with `<default_to_action>` blocks, quick reference cards, 40-60% token reduction
|
|
685
|
+
- **Testability Scoring v2.1**: Optimized skill format, Fleet coordination hints, improved memory namespace organization
|
|
686
|
+
- **QX Partner Agent v2.1**: Enhanced capabilities for Rule of Three analysis, domain-specific detection, comprehensive report formatting
|
|
687
|
+
|
|
688
|
+
### Skills Optimization
|
|
682
689
|
|
|
683
|
-
|
|
684
|
-
-
|
|
685
|
-
-
|
|
686
|
-
-
|
|
687
|
-
-
|
|
688
|
-
- **CI platform compatibility**: Moved ARM64-only ruvector packages to optionalDependencies for x64 CI compatibility
|
|
690
|
+
All 38 QE skills now feature:
|
|
691
|
+
- Optimized frontmatter with `tokenEstimate`, `agents`, `implementation_status`, `optimization_version`
|
|
692
|
+
- `<default_to_action>` blocks for immediate actionable guidance
|
|
693
|
+
- Quick reference cards with tables and command examples
|
|
694
|
+
- Fleet coordination and memory namespace hints
|
|
689
695
|
|
|
690
|
-
###
|
|
696
|
+
### QX Analysis Improvements
|
|
691
697
|
|
|
692
|
-
- **
|
|
693
|
-
- **
|
|
694
|
-
- **
|
|
698
|
+
- **23+ Heuristics**: Detailed findings, issues, and recommendations per heuristic
|
|
699
|
+
- **Domain Detection**: Automatic failure mode detection by site type
|
|
700
|
+
- **Contextual Extraction**: Real page content analysis (headings, navigation, buttons, forms, links)
|
|
701
|
+
- **Rule of Three**: Problem complexity assessment ensuring minimum 3 failure modes identified
|
|
695
702
|
|
|
696
|
-
**Upgrade**: `npm install agentic-qe@1.
|
|
703
|
+
**Upgrade**: `npm install agentic-qe@2.1.0`
|
|
697
704
|
|
|
698
705
|
---
|
|
699
706
|
|
|
@@ -31,6 +31,8 @@ export declare class QXPartnerAgent extends BaseAgent {
|
|
|
31
31
|
private heuristicsEngine?;
|
|
32
32
|
private oracleDetector?;
|
|
33
33
|
private impactAnalyzer?;
|
|
34
|
+
private browser;
|
|
35
|
+
private page;
|
|
34
36
|
constructor(config: QXPartnerConfig & {
|
|
35
37
|
context: AgentContext;
|
|
36
38
|
memoryStore: MemoryStore;
|
|
@@ -61,9 +63,13 @@ export declare class QXPartnerAgent extends BaseAgent {
|
|
|
61
63
|
*/
|
|
62
64
|
private performFullQXAnalysis;
|
|
63
65
|
/**
|
|
64
|
-
* Collect QX context from target
|
|
66
|
+
* Collect QX context from target using Playwright
|
|
65
67
|
*/
|
|
66
68
|
private collectQXContext;
|
|
69
|
+
/**
|
|
70
|
+
* Detect domain-specific failure modes based on site type
|
|
71
|
+
*/
|
|
72
|
+
private detectDomainSpecificFailures;
|
|
67
73
|
/**
|
|
68
74
|
* Analyze problem using Rule of Three and complexity assessment
|
|
69
75
|
*/
|
|
@@ -92,6 +98,7 @@ export declare class QXPartnerAgent extends BaseAgent {
|
|
|
92
98
|
* Generate QX recommendations
|
|
93
99
|
*/
|
|
94
100
|
private generateRecommendations;
|
|
101
|
+
private formatHeuristicName;
|
|
95
102
|
/**
|
|
96
103
|
* Calculate overall QX score
|
|
97
104
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"QXPartnerAgent.d.ts","sourceRoot":"","sources":["../../src/agents/QXPartnerAgent.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAEH,OAAO,EAAE,SAAS,EAAmB,MAAM,aAAa,CAAC;AACzD,OAAO,EAAE,MAAM,EAAgC,YAAY,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAC3F,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;
|
|
1
|
+
{"version":3,"file":"QXPartnerAgent.d.ts","sourceRoot":"","sources":["../../src/agents/QXPartnerAgent.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;GAgBG;AAEH,OAAO,EAAE,SAAS,EAAmB,MAAM,aAAa,CAAC;AACzD,OAAO,EAAE,MAAM,EAAgC,YAAY,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAC3F,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAEtC,OAAO,EAEL,eAAe,EAahB,MAAM,aAAa,CAAC;AAGrB,UAAU,MAAM;IACd,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC;IAChD,IAAI,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC;IAChD,KAAK,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC;IACjD,KAAK,CAAC,OAAO,EAAE,MAAM,EAAE,GAAG,IAAI,EAAE,OAAO,EAAE,GAAG,IAAI,CAAC;CAClD;AAiBD,qBAAa,cAAe,SAAQ,SAAS;IAC3C,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAkB;IACzC,SAAS,CAAC,QAAQ,CAAC,MAAM,EAAE,MAAM,CAAuB;IACxD,OAAO,CAAC,gBAAgB,CAAC,CAAqB;IAC9C,OAAO,CAAC,cAAc,CAAC,CAAiB;IACxC,OAAO,CAAC,cAAc,CAAC,CAAiB;IACxC,OAAO,CAAC,OAAO,CAAwB;IACvC,OAAO,CAAC,IAAI,CAAqB;gBAErB,MAAM,EAAE,eAAe,GAAG;QAAE,OAAO,EAAE,YAAY,CAAC;QAAC,WAAW,EAAE,WAAW,CAAC;QAAC,QAAQ,EAAE,YAAY,CAAA;KAAE;IAsCjH;;OAEG;IACH,OAAO,CAAC,MAAM,CAAC,sBAAsB;IAmCrC;;OAEG;cACa,oBAAoB,IAAI,OAAO,CAAC,IAAI,CAAC;IAmCrD;;OAEG;cACa,aAAa,IAAI,OAAO,CAAC,IAAI,CAAC;IA+C9C;;OAEG;cACa,OAAO,IAAI,OAAO,CAAC,IAAI,CAAC;IAiCxC;;OAEG;cACa,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC;IAqC3D;;OAEG;YACW,qBAAqB;IAiFnC;;OAEG;YACW,gBAAgB;IAqM9B;;OAEG;IACH,OAAO,CAAC,4BAA4B;IA4HpC;;OAEG;YACW,cAAc;IA0H5B;;OAEG;YACW,gBAAgB;IAsG9B;;OAEG;YACW,oBAAoB;IA4FlC;;OAEG;YACW,+BAA+B;IAY7C;;OAEG;YACW,aAAa;IAQ3B;;OAEG;YACW,kBAAkB;IAahC;;OAEG;YACW,uBAAuB;IAgKrC,OAAO,CAAC,mBAAmB;IAO3B;;OAEG;IACH,OAAO,CAAC,uBAAuB;IAgC/B;;OAEG;IACH,OAAO,CAAC,YAAY;IAQpB;;OAEG;YACW,oBAAoB;IASlC;;OAEG;YACW,0BAA0B;IAkBxC,OAAO,CAAC,wBAAwB;IAWhC;;OAEG;YACW,qBAAqB;IAOnC;;OAEG;YACW,sBAAsB;IAiBpC;;OAEG;YACW,yBAAyB;IAKvC;;OAEG;YACW,2BAA2B;YA2B3B,sCAAsC;YAKtC,0BAA0B;YAY1B,+BAA+B;YAW/B,WAAW;YASX,kBAAkB;YAQlB,sBAAsB;YAQtB,0BAA0B;cASxB,mBAAmB,IAAI,OAAO,CAAC,IAAI,CAAC;cAIpC,oBAAoB,IAAI,OAAO,CAAC,IAAI,CAAC;CAGtD"}
|