agentic-qe 3.4.2 → 3.4.4

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 (119) hide show
  1. package/.claude/skills/README.md +126 -35
  2. package/package.json +1 -1
  3. package/v3/CHANGELOG.md +50 -0
  4. package/v3/README.md +18 -24
  5. package/v3/dist/cli/bundle.js +10693 -10285
  6. package/v3/dist/cli/commands/init.d.ts.map +1 -1
  7. package/v3/dist/cli/commands/init.js +5 -2
  8. package/v3/dist/cli/commands/init.js.map +1 -1
  9. package/v3/dist/cli/handlers/init-handler.d.ts +1 -0
  10. package/v3/dist/cli/handlers/init-handler.d.ts.map +1 -1
  11. package/v3/dist/cli/handlers/init-handler.js +10 -1
  12. package/v3/dist/cli/handlers/init-handler.js.map +1 -1
  13. package/v3/dist/init/agents-installer.d.ts.map +1 -1
  14. package/v3/dist/init/agents-installer.js +20 -16
  15. package/v3/dist/init/agents-installer.js.map +1 -1
  16. package/v3/dist/init/orchestrator.d.ts.map +1 -1
  17. package/v3/dist/init/orchestrator.js +1 -0
  18. package/v3/dist/init/orchestrator.js.map +1 -1
  19. package/v3/dist/init/phases/04-database.d.ts +14 -2
  20. package/v3/dist/init/phases/04-database.d.ts.map +1 -1
  21. package/v3/dist/init/phases/04-database.js +50 -48
  22. package/v3/dist/init/phases/04-database.js.map +1 -1
  23. package/v3/dist/init/phases/08-mcp.d.ts +6 -1
  24. package/v3/dist/init/phases/08-mcp.d.ts.map +1 -1
  25. package/v3/dist/init/phases/08-mcp.js +54 -28
  26. package/v3/dist/init/phases/08-mcp.js.map +1 -1
  27. package/v3/dist/init/phases/09-assets.d.ts.map +1 -1
  28. package/v3/dist/init/phases/09-assets.js +8 -3
  29. package/v3/dist/init/phases/09-assets.js.map +1 -1
  30. package/v3/dist/init/phases/10-workers.d.ts +11 -0
  31. package/v3/dist/init/phases/10-workers.d.ts.map +1 -1
  32. package/v3/dist/init/phases/10-workers.js +246 -11
  33. package/v3/dist/init/phases/10-workers.js.map +1 -1
  34. package/v3/dist/init/phases/phase-interface.d.ts +2 -0
  35. package/v3/dist/init/phases/phase-interface.d.ts.map +1 -1
  36. package/v3/dist/init/phases/phase-interface.js.map +1 -1
  37. package/v3/dist/init/skills-installer.d.ts +5 -0
  38. package/v3/dist/init/skills-installer.d.ts.map +1 -1
  39. package/v3/dist/init/skills-installer.js +77 -26
  40. package/v3/dist/init/skills-installer.js.map +1 -1
  41. package/v3/dist/integrations/agent-booster-wasm/index.d.ts +36 -19
  42. package/v3/dist/integrations/agent-booster-wasm/index.d.ts.map +1 -1
  43. package/v3/dist/integrations/agent-booster-wasm/index.js +32 -21
  44. package/v3/dist/integrations/agent-booster-wasm/index.js.map +1 -1
  45. package/v3/dist/integrations/agentic-flow/agent-booster/adapter.d.ts.map +1 -1
  46. package/v3/dist/integrations/agentic-flow/agent-booster/adapter.js +57 -4
  47. package/v3/dist/integrations/agentic-flow/agent-booster/adapter.js.map +1 -1
  48. package/v3/dist/mcp/bundle.js +143 -28
  49. package/v3/dist/strange-loop/healing-controller.d.ts.map +1 -1
  50. package/v3/dist/strange-loop/healing-controller.js +54 -2
  51. package/v3/dist/strange-loop/healing-controller.js.map +1 -1
  52. package/v3/dist/strange-loop/index.d.ts +2 -1
  53. package/v3/dist/strange-loop/index.d.ts.map +1 -1
  54. package/v3/dist/strange-loop/index.js +3 -1
  55. package/v3/dist/strange-loop/index.js.map +1 -1
  56. package/v3/dist/strange-loop/infra-healing/composite-action-executor.d.ts +39 -0
  57. package/v3/dist/strange-loop/infra-healing/composite-action-executor.d.ts.map +1 -0
  58. package/v3/dist/strange-loop/infra-healing/composite-action-executor.js +82 -0
  59. package/v3/dist/strange-loop/infra-healing/composite-action-executor.js.map +1 -0
  60. package/v3/dist/strange-loop/infra-healing/coordination-lock.d.ts +54 -0
  61. package/v3/dist/strange-loop/infra-healing/coordination-lock.d.ts.map +1 -0
  62. package/v3/dist/strange-loop/infra-healing/coordination-lock.js +104 -0
  63. package/v3/dist/strange-loop/infra-healing/coordination-lock.js.map +1 -0
  64. package/v3/dist/strange-loop/infra-healing/index.d.ts +20 -0
  65. package/v3/dist/strange-loop/infra-healing/index.d.ts.map +1 -0
  66. package/v3/dist/strange-loop/infra-healing/index.js +26 -0
  67. package/v3/dist/strange-loop/infra-healing/index.js.map +1 -0
  68. package/v3/dist/strange-loop/infra-healing/infra-action-executor.d.ts +70 -0
  69. package/v3/dist/strange-loop/infra-healing/infra-action-executor.d.ts.map +1 -0
  70. package/v3/dist/strange-loop/infra-healing/infra-action-executor.js +260 -0
  71. package/v3/dist/strange-loop/infra-healing/infra-action-executor.js.map +1 -0
  72. package/v3/dist/strange-loop/infra-healing/infra-aware-agent-provider.d.ts +56 -0
  73. package/v3/dist/strange-loop/infra-healing/infra-aware-agent-provider.d.ts.map +1 -0
  74. package/v3/dist/strange-loop/infra-healing/infra-aware-agent-provider.js +108 -0
  75. package/v3/dist/strange-loop/infra-healing/infra-aware-agent-provider.js.map +1 -0
  76. package/v3/dist/strange-loop/infra-healing/infra-healing-orchestrator.d.ts +102 -0
  77. package/v3/dist/strange-loop/infra-healing/infra-healing-orchestrator.d.ts.map +1 -0
  78. package/v3/dist/strange-loop/infra-healing/infra-healing-orchestrator.js +201 -0
  79. package/v3/dist/strange-loop/infra-healing/infra-healing-orchestrator.js.map +1 -0
  80. package/v3/dist/strange-loop/infra-healing/recovery-playbook.d.ts +74 -0
  81. package/v3/dist/strange-loop/infra-healing/recovery-playbook.d.ts.map +1 -0
  82. package/v3/dist/strange-loop/infra-healing/recovery-playbook.js +153 -0
  83. package/v3/dist/strange-loop/infra-healing/recovery-playbook.js.map +1 -0
  84. package/v3/dist/strange-loop/infra-healing/test-output-observer.d.ts +61 -0
  85. package/v3/dist/strange-loop/infra-healing/test-output-observer.d.ts.map +1 -0
  86. package/v3/dist/strange-loop/infra-healing/test-output-observer.js +339 -0
  87. package/v3/dist/strange-loop/infra-healing/test-output-observer.js.map +1 -0
  88. package/v3/dist/strange-loop/infra-healing/types.d.ts +253 -0
  89. package/v3/dist/strange-loop/infra-healing/types.d.ts.map +1 -0
  90. package/v3/dist/strange-loop/infra-healing/types.js +33 -0
  91. package/v3/dist/strange-loop/infra-healing/types.js.map +1 -0
  92. package/v3/dist/strange-loop/strange-loop.d.ts +63 -0
  93. package/v3/dist/strange-loop/strange-loop.d.ts.map +1 -1
  94. package/v3/dist/strange-loop/strange-loop.js +62 -0
  95. package/v3/dist/strange-loop/strange-loop.js.map +1 -1
  96. package/v3/dist/strange-loop/types.d.ts +2 -2
  97. package/v3/dist/strange-loop/types.d.ts.map +1 -1
  98. package/v3/dist/strange-loop/types.js.map +1 -1
  99. package/v3/dist/sync/embeddings/index.d.ts +9 -0
  100. package/v3/dist/sync/embeddings/index.d.ts.map +1 -0
  101. package/v3/dist/sync/embeddings/index.js +9 -0
  102. package/v3/dist/sync/embeddings/index.js.map +1 -0
  103. package/v3/dist/sync/embeddings/sync-embedding-generator.d.ts +101 -0
  104. package/v3/dist/sync/embeddings/sync-embedding-generator.d.ts.map +1 -0
  105. package/v3/dist/sync/embeddings/sync-embedding-generator.js +264 -0
  106. package/v3/dist/sync/embeddings/sync-embedding-generator.js.map +1 -0
  107. package/v3/dist/sync/index.d.ts +1 -0
  108. package/v3/dist/sync/index.d.ts.map +1 -1
  109. package/v3/dist/sync/index.js +2 -0
  110. package/v3/dist/sync/index.js.map +1 -1
  111. package/v3/dist/workers/workers/cloud-sync.d.ts +19 -0
  112. package/v3/dist/workers/workers/cloud-sync.d.ts.map +1 -0
  113. package/v3/dist/workers/workers/cloud-sync.js +177 -0
  114. package/v3/dist/workers/workers/cloud-sync.js.map +1 -0
  115. package/v3/dist/workers/workers/index.d.ts +12 -11
  116. package/v3/dist/workers/workers/index.d.ts.map +1 -1
  117. package/v3/dist/workers/workers/index.js +12 -11
  118. package/v3/dist/workers/workers/index.js.map +1 -1
  119. package/v3/package.json +8 -4
@@ -1,50 +1,141 @@
1
1
  # AQE Skills Index
2
2
 
3
- This directory contains Quality Engineering skills installed by `aqe init`.
4
-
5
- > **Note**: Claude Flow platform skills (agentdb, n8n, github, flow-nexus, etc.) are managed
6
- > separately by the claude-flow package. This directory contains only QE-specific skills.
3
+ This directory contains Quality Engineering skills managed by Agentic QE.
7
4
 
8
5
  ## Summary
9
6
 
10
- - **Total Skills**: 1
11
- - **V2 Methodology Skills**: 0
12
- - **V3 Domain Skills**: 1
7
+ - **Total QE Skills**: 63
8
+ - **V2 Methodology Skills**: 49
9
+ - **V3 Domain Skills**: 14
10
+ - **Platform Skills**: 34 (Claude Flow managed)
11
+ - **Validation Infrastructure**: ✅ Installed
13
12
 
14
- ## V2 Methodology Skills (0)
13
+ > **Note**: Platform skills (agentdb, github, flow-nexus, etc.) are managed by claude-flow.
14
+ > Only QE-specific skills are installed/updated by `aqe init`.
15
15
 
16
- Version-agnostic quality engineering best practices from the QE community.
16
+ ## V2 Methodology Skills (49)
17
17
 
18
- *None installed*
18
+ Version-agnostic quality engineering best practices from the QE community.
19
19
 
20
- ## V3 Domain Skills (1)
20
+ - **a11y-ally**: Comprehensive WCAG accessibility auditing with multi-tool testing (axe-core + pa11y + Lighthouse), TRUE PARALLEL execution with Promise.allSettled, graceful degradation, retry with backoff, context-aware remediation, learning integration, and video accessibility. Uses 3-tier browser cascade: Vibium → agent-browser → Playwright+Stealth.
21
+ - **accessibility-testing**: WCAG 2.2 compliance testing, screen reader validation, and inclusive design verification. Use when ensuring legal compliance (ADA, Section 508), testing for disabilities, or building accessible applications for 1 billion disabled users globally.
22
+ - **agentic-quality-engineering**: AI agents as force multipliers for quality work. Core skill for all 19 QE agents using PACT principles.
23
+ - **api-testing-patterns**: Comprehensive API testing patterns including contract testing, REST/GraphQL testing, and integration testing. Use when testing APIs or designing API test strategies.
24
+ - **brutal-honesty-review**: Unvarnished technical criticism combining Linus Torvalds
25
+ - **bug-reporting-excellence**: Write high-quality bug reports that get fixed quickly. Use when reporting bugs, training teams on bug reporting, or establishing bug report standards.
26
+ - **chaos-engineering-resilience**: Chaos engineering principles, controlled failure injection, resilience testing, and system recovery validation. Use when testing distributed systems, building confidence in fault tolerance, or validating disaster recovery.
27
+ - **cicd-pipeline-qe-orchestrator**: Orchestrate quality engineering across CI/CD pipeline phases. Use when designing test strategies, planning quality gates, or implementing shift-left/shift-right testing.
28
+ - **code-review-quality**: Conduct context-driven code reviews focusing on quality, testability, and maintainability. Use when reviewing code, providing feedback, or establishing review practices.
29
+ - **compatibility-testing**: Cross-browser, cross-platform, and cross-device compatibility testing ensuring consistent experience across environments. Use when validating browser support, testing responsive design, or ensuring platform compatibility.
30
+ - **compliance-testing**: Regulatory compliance testing for GDPR, CCPA, HIPAA, SOC2, PCI-DSS and industry-specific regulations. Use when ensuring legal compliance, preparing for audits, or handling sensitive data.
31
+ - **consultancy-practices**: Apply effective software quality consultancy practices. Use when consulting, advising clients, or establishing consultancy workflows.
32
+ - **context-driven-testing**: Apply context-driven testing principles where practices are chosen based on project context, not universal
33
+ - **contract-testing**: Consumer-driven contract testing for microservices using Pact, schema validation, API versioning, and backward compatibility testing. Use when testing API contracts or coordinating distributed teams.
34
+ - **database-testing**: Database schema validation, data integrity testing, migration testing, transaction isolation, and query performance. Use when testing data persistence, ensuring referential integrity, or validating database migrations.
35
+ - **exploratory-testing-advanced**: Advanced exploratory testing techniques with Session-Based Test Management (SBTM), RST heuristics, and test tours. Use when planning exploration sessions, investigating bugs, or discovering unknown quality risks.
36
+ - **holistic-testing-pact**: Apply the Holistic Testing Model evolved with PACT (Proactive, Autonomous, Collaborative, Targeted) principles. Use when designing comprehensive test strategies for Classical, AI-assisted, Agent based, or Agentic Systems building quality into the team, or implementing whole-team quality practices.
37
+ - **localization-testing**: Internationalization (i18n) and localization (l10n) testing for global products including translations, locale formats, RTL languages, and cultural appropriateness. Use when launching in new markets or building multi-language products.
38
+ - **mobile-testing**: Comprehensive mobile testing for iOS and Android platforms including gestures, sensors, permissions, device fragmentation, and performance. Use when testing native apps, hybrid apps, or mobile web, ensuring quality across 1000+ device variants.
39
+ - **mutation-testing**: Test quality validation through mutation testing, assessing test suite effectiveness by introducing code mutations and measuring kill rate. Use when evaluating test quality, identifying weak tests, or proving tests actually catch bugs.
40
+ - **n8n-expression-testing**: n8n expression syntax validation, context-aware testing, common pitfalls detection, and performance optimization. Use when validating n8n expressions and data transformations.
41
+ - **n8n-integration-testing-patterns**: API contract testing, authentication flows, rate limit handling, and error scenario coverage for n8n integrations with external services. Use when testing n8n node integrations.
42
+ - **n8n-security-testing**: Credential exposure detection, OAuth flow validation, API key management testing, and data sanitization verification for n8n workflows. Use when validating n8n workflow security.
43
+ - **n8n-trigger-testing-strategies**: Webhook testing, schedule validation, event-driven triggers, and polling mechanism testing for n8n workflows. Use when testing how workflows are triggered.
44
+ - **n8n-workflow-testing-fundamentals**: Comprehensive n8n workflow testing including execution lifecycle, node connection patterns, data flow validation, and error handling strategies. Use when testing n8n workflow automation applications.
45
+ - **pair-programming**: AI-assisted pair programming with multiple modes (driver/navigator/switch), real-time verification, quality monitoring, and comprehensive testing. Supports TDD, debugging, refactoring, and learning sessions. Features automatic role switching, continuous code review, security scanning, and performance optimization with truth-score verification.
46
+ - **performance-testing**: Test application performance, scalability, and resilience. Use when planning load testing, stress testing, or optimizing system performance.
47
+ - **qcsd-ideation-swarm**: QCSD Ideation phase swarm for Quality Criteria sessions using HTSM v6.3, Risk Storming, and Testability analysis before development begins. Uses 5-tier browser cascade: Vibium → agent-browser → Playwright+Stealth → WebFetch → WebSearch-fallback.
48
+ - **quality-metrics**: Measure quality effectively with actionable metrics. Use when establishing quality dashboards, defining KPIs, or evaluating test effectiveness.
49
+ - **refactoring-patterns**: Apply safe refactoring patterns to improve code structure without changing behavior. Use when cleaning up code, reducing technical debt, or improving maintainability.
50
+ - **regression-testing**: Strategic regression testing with test selection, impact analysis, and continuous regression management. Use when verifying fixes don
51
+ - **risk-based-testing**: Focus testing effort on highest-risk areas using risk assessment and prioritization. Use when planning test strategy, allocating testing resources, or making coverage decisions.
52
+ - **security-testing**: Test for security vulnerabilities using OWASP principles. Use when conducting security audits, testing auth, or implementing security practices.
53
+ - **security-visual-testing**: Security-first visual testing combining URL validation, PII detection, and visual regression with parallel viewport support. Use when testing web applications that handle sensitive data, need visual regression coverage, or require WCAG accessibility compliance.
54
+ - **sherlock-review**: Evidence-based investigative code review using deductive reasoning to determine what actually happened versus what was claimed. Use when verifying implementation claims, investigating bugs, validating fixes, or conducting root cause analysis. Elementary approach to finding truth through systematic observation.
55
+ - **shift-left-testing**: Move testing activities earlier in the development lifecycle to catch defects when they
56
+ - **shift-right-testing**: Testing in production with feature flags, canary deployments, synthetic monitoring, and chaos engineering. Use when implementing production observability or progressive delivery.
57
+ - **six-thinking-hats**: Apply Edward de Bono
58
+ - **tdd-london-chicago**: Apply London (mock-based) and Chicago (state-based) TDD schools. Use when practicing test-driven development or choosing testing style for your context.
59
+ - **technical-writing**: Write clear, engaging technical content from real experience. Use when writing blog posts, documentation, tutorials, or technical articles.
60
+ - **test-automation-strategy**: Design and implement effective test automation with proper pyramid, patterns, and CI/CD integration. Use when building automation frameworks or improving test efficiency.
61
+ - **test-data-management**: Strategic test data generation, management, and privacy compliance. Use when creating test data, handling PII, ensuring GDPR/CCPA compliance, or scaling data generation for realistic testing scenarios.
62
+ - **test-design-techniques**: Systematic test design with boundary value analysis, equivalence partitioning, decision tables, state transition testing, and combinatorial testing. Use when designing comprehensive test cases, reducing redundant tests, or ensuring systematic coverage.
63
+ - **test-environment-management**: Test environment provisioning, infrastructure as code for testing, Docker/Kubernetes for test environments, service virtualization, and cost optimization. Use when managing test infrastructure, ensuring environment parity, or optimizing testing costs.
64
+ - **test-reporting-analytics**: Advanced test reporting, quality dashboards, predictive analytics, trend analysis, and executive reporting for QE metrics. Use when communicating quality status, tracking trends, or making data-driven decisions.
65
+ - **testability-scoring**: AI-powered testability assessment using 10 principles of intrinsic testability with Playwright and optional Vibium integration. Evaluates web applications against Observability, Controllability, Algorithmic Simplicity, Transparency, Stability, Explainability, Unbugginess, Smallness, Decomposability, and Similarity. Use when assessing software testability, evaluating test readiness, identifying testability improvements, or generating testability reports.
66
+ - **verification-quality**: Comprehensive truth scoring, code quality verification, and automatic rollback system with 0.95 accuracy threshold for ensuring high-quality agent outputs and codebase reliability.
67
+ - **visual-testing-advanced**: Advanced visual regression testing with pixel-perfect comparison, AI-powered diff analysis, responsive design validation, and cross-browser visual consistency. Use when detecting UI regressions, validating designs, or ensuring visual consistency.
68
+ - **xp-practices**: Apply XP practices including pair programming, ensemble programming, continuous integration, and sustainable pace. Use when implementing agile development practices, improving team collaboration, or adopting technical excellence practices.
69
+
70
+ ## V3 Domain Skills (14)
21
71
 
22
72
  V3-specific implementation guides for the 12 DDD bounded contexts.
23
73
 
24
- ### qe-a11y-ally (visual-accessibility domain)
25
-
26
- **File:** `library/qe-a11y-ally.md`
27
-
28
- WCAG accessibility auditing with **mandatory video accessibility generation**. This skill ensures the full V3 video pipeline is executed.
29
-
30
- **Key Features:**
31
- - WCAG 2.1/2.2 AA/AAA compliance auditing
32
- - Video detection and download
33
- - Frame extraction with ffmpeg (10 frames @ 3s intervals)
34
- - AI frame analysis with Claude Vision
35
- - WebVTT caption generation (`*-captions.vtt`)
36
- - Audio description generation (`*-audiodesc.vtt`)
37
- - EU compliance (EN 301 549, EAA, BITV 2.0)
38
-
39
- **Output:** `docs/accessibility/captions/{page-slug}/`
40
-
41
- **Usage:**
42
- ```
43
- /qe-a11y-ally https://example.com/page-with-video
44
- ```
45
-
46
-
74
+ - **aqe-v2-v3-migration**: Migrate Agentic QE projects from v2 to v3 with zero data loss
75
+ - **qe-chaos-resilience**: Chaos engineering and resilience testing including fault injection, load testing, and system recovery validation.
76
+ - **qe-code-intelligence**: Knowledge graph-based code understanding with semantic search and 80% token reduction through intelligent context retrieval.
77
+ - **qe-contract-testing**: Consumer-driven contract testing for APIs including REST, GraphQL, and event-driven systems with schema validation.
78
+ - **qe-coverage-analysis**: O(log n) sublinear coverage gap detection with risk-weighted analysis and intelligent test prioritization.
79
+ - **qe-defect-intelligence**: AI-powered defect prediction, pattern learning, and root cause analysis for proactive quality management.
80
+ - **qe-iterative-loop**: Quality Engineering iteration loops for autonomous test improvement, coverage achievement, and quality gate compliance. Use when tests need to pass, coverage targets must be met, quality gates require compliance, or flaky tests need stabilization. Integrates with AQE v3 fleet agents for coordinated quality iteration.
81
+ - **qe-learning-optimization**: Transfer learning, metrics optimization, and continuous improvement for AI-powered QE agents.
82
+ - **qe-quality-assessment**: Comprehensive quality gates, metrics analysis, and deployment readiness assessment for continuous quality assurance.
83
+ - **qe-requirements-validation**: Requirements traceability, acceptance criteria validation, and BDD scenario management for complete requirements coverage.
84
+ - **qe-security-compliance**: Security auditing, vulnerability scanning, and compliance validation for OWASP, SOC2, GDPR, and other standards.
85
+ - **qe-test-execution**: Parallel test execution orchestration with intelligent scheduling, retry logic, and comprehensive result aggregation.
86
+ - **qe-test-generation**: AI-powered test generation using pattern recognition, code analysis, and intelligent test synthesis for comprehensive test coverage.
87
+ - **qe-visual-accessibility**: Visual regression testing, responsive design validation, and WCAG accessibility compliance testing.
88
+
89
+ ## Platform Skills (34)
90
+
91
+ Claude Flow platform skills (managed separately).
92
+
93
+ - agentdb-advanced
94
+ - agentdb-learning
95
+ - agentdb-memory-patterns
96
+ - agentdb-optimization
97
+ - agentdb-vector-search
98
+ - agentic-jujutsu
99
+ - flow-nexus-neural
100
+ - flow-nexus-platform
101
+ - flow-nexus-swarm
102
+ - github-code-review
103
+ - github-multi-repo
104
+ - github-project-management
105
+ - github-release-management
106
+ - github-workflow-automation
107
+ - hive-mind-advanced
108
+ - hooks-automation
109
+ - iterative-loop
110
+ - performance-analysis
111
+ - reasoningbank-agentdb
112
+ - reasoningbank-intelligence
113
+ - skill-builder
114
+ - sparc-methodology
115
+ - stream-chain
116
+ - swarm-advanced
117
+ - swarm-orchestration
118
+ - v3-cli-modernization
119
+ - v3-core-implementation
120
+ - v3-ddd-architecture
121
+ - v3-integration-deep
122
+ - v3-mcp-optimization
123
+ - v3-memory-unification
124
+ - v3-performance-optimization
125
+ - v3-security-overhaul
126
+ - v3-swarm-coordination
127
+
128
+ ## Validation Infrastructure
129
+
130
+ The `.validation/` directory contains the skill validation infrastructure (ADR-056):
131
+
132
+ - **schemas/**: JSON Schema definitions for validating skill outputs
133
+ - **templates/**: Validator script templates for creating skill validators
134
+ - **examples/**: Example skill outputs that validate against schemas
135
+ - **test-data/**: Test data for validator self-testing
136
+
137
+ See `.validation/README.md` for usage instructions.
47
138
 
48
139
  ---
49
140
 
50
- *Generated by AQE v3 init on 2026-01-25T14:23:40.890Z*
141
+ *Generated by AQE v3 init on 2026-02-02T12:17:47.766Z*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-qe",
3
- "version": "3.4.2",
3
+ "version": "3.4.4",
4
4
  "description": "Agentic Quality Engineering V3 - Domain-Driven Design Architecture with 12 Bounded Contexts, O(log n) coverage analysis, ReasoningBank learning, 51 specialized QE agents, mathematical Coherence verification, deep Claude Flow integration",
5
5
  "main": "./v3/dist/index.js",
6
6
  "types": "./v3/dist/index.d.ts",
package/v3/CHANGELOG.md CHANGED
@@ -5,6 +5,56 @@ All notable changes to Agentic QE will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [3.4.4] - 2026-02-03
9
+
10
+ ### Added
11
+
12
+ #### Infrastructure Self-Healing Extension (ADR-057)
13
+ - **TestOutputObserver** - Pattern-matches 22+ OS-level error signatures (ECONNREFUSED, ETIMEDOUT, ENOTFOUND, ENOMEM, ENOSPC) from test stderr to detect infrastructure failures
14
+ - **RecoveryPlaybook** - YAML-driven configuration for service recovery with `${VAR}` environment interpolation
15
+ - **CoordinationLock** - In-process TTL-based mutex preventing duplicate recovery attempts for the same service
16
+ - **InfraActionExecutor** - Executes recovery cycle: healthCheck → recover → backoff → verify
17
+ - **CompositeActionExecutor** - Routes swarm actions to original executor, infra actions to InfraActionExecutor
18
+ - **InfraAwareAgentProvider** - Wraps AgentProvider to inject synthetic infrastructure agents with health derived from observer state
19
+ - **InfraHealingOrchestrator** - Top-level coordinator: `feedTestOutput()` → `runRecoveryCycle()` → stats
20
+ - **Factory functions** - `createStrangeLoopWithInfraHealing()` and `createInMemoryStrangeLoopWithInfraHealing()` for easy integration
21
+ - **Default playbook** - Reference YAML template for 8 services (postgres, mysql, mongodb, redis, elasticsearch, rabbitmq, selenium-grid, generic-service)
22
+ - **Demo script** - `scripts/demo-infra-healing.ts` demonstrates full pipeline
23
+
24
+ ### Changed
25
+ - **Strange Loop types** - Added 8 infrastructure vulnerability types to `SwarmVulnerability['type']` union
26
+ - **Healing controller** - Extended with `restart_service` action type and infra-agent override logic in `mapVulnerabilityToAction()`
27
+ - **ADR index** - Updated v3-adrs.md with ADR-057 entry (54 total ADRs implemented)
28
+
29
+ ### Technical Details
30
+ - Extends Strange Loop through existing DI seams without modifying core OMDA cycle
31
+ - Framework-agnostic: works with Jest, Pytest, JUnit, or any test framework
32
+ - 245 tests (151 new + 94 existing), zero regressions
33
+ - Security: uses `execFile` (not `exec`), documents trust boundary for playbook YAML
34
+
35
+ ## [3.4.3] - 2026-02-02
36
+
37
+ ### Added
38
+ - **`--upgrade` flag for `aqe init`** - Enables overwriting existing skills, agents, and validation infrastructure when upgrading between versions
39
+ - Skills installer now scans actual directory for accurate README generation
40
+
41
+ ### Fixed
42
+ - **Skills README accuracy** - README now shows actual 63 QE skills instead of only newly-installed skills
43
+ - **Upgrade path from v3.2.3 to v3.4.x** - Previously only 31 new files were installed; now all 63 QE skills + agents + validation are properly updated when using `--upgrade`
44
+
45
+ ### Changed
46
+ - Assets phase respects `--upgrade` flag for all installers (skills, agents, n8n)
47
+ - Improved init help text with upgrade examples
48
+
49
+ ### Usage
50
+ ```bash
51
+ # Upgrade existing installation (overwrites all skills, agents, validation)
52
+ aqe init --auto --upgrade
53
+
54
+ # Or standalone
55
+ aqe init --upgrade
56
+ ```
57
+
8
58
  ## [3.4.0] - 2026-02-01
9
59
 
10
60
  ### 🎯 Highlights
package/v3/README.md CHANGED
@@ -7,22 +7,16 @@
7
7
 
8
8
  > Domain-Driven Quality Engineering with Mathematical Coherence Verification, 12 Bounded Contexts, 51 Specialized QE Agents, 63 QE Skills, and ReasoningBank Learning
9
9
 
10
- ### What's New in v3.4.2
10
+ ### Key Features
11
11
 
12
12
  | Feature | Description |
13
13
  |---------|-------------|
14
- | **Trust Tiers** | 4-layer skill validation system (Tier 0-3) for deterministic outputs |
15
- | **46 Tier 3 Skills** | Full evaluation test suites with verified behavior |
16
- | **Skill Validation CLI** | `aqe skill report`, `aqe eval run` for validation workflows |
17
- | **ReasoningBank Integration** | Validation patterns persisted for cross-domain learning |
18
-
19
- ### What's New in v3.4.0
20
-
21
- | Feature | Description |
22
- |---------|-------------|
23
- | **AG-UI Protocol** | Anthropic's streaming interface - real-time agent progress to UI |
24
- | **A2A Protocol** | Google's agent-to-agent standard - cross-tool interoperability |
25
- | **A2UI Components** | Hybrid UI components combining streaming + events |
14
+ | **63 QE Skills** | Quality engineering skills with 4-tier trust validation system |
15
+ | **51 QE Agents** | Specialized agents for test generation, security, coverage, and more |
16
+ | **12 DDD Domains** | Modular bounded contexts for all quality engineering needs |
17
+ | **MCP Integration** | Full Claude Code integration via Model Context Protocol |
18
+ | **AG-UI/A2A Protocols** | Industry-standard agent streaming and interoperability |
19
+ | **O(log n) Analysis** | Sublinear coverage analysis with HNSW vector indexing |
26
20
 
27
21
  ## Quick Start
28
22
 
@@ -63,12 +57,12 @@ npx aqe test generate src/
63
57
  - **ReasoningBank + SONA + Dream Cycles** - Neural pattern learning with 9 RL algorithms
64
58
  - **Queen-led Coordination** - 3-5x throughput with work stealing and consensus
65
59
  - **MinCut Topology** - Graph-based self-healing agent coordination
66
- - **Coherence Verification** (v3.3.0) - Mathematical proof of belief consistency using WASM engines
67
- - **MinCut/Consensus Integration** (v3.3.3) - Full 12/12 domain integration with self-healing
68
- - **Cross-Phase Memory Unification** (v3.3.5) - Unified SQLite storage for QCSD feedback loops
60
+ - **Coherence Verification** - Mathematical proof of belief consistency using WASM engines
61
+ - **MinCut/Consensus Integration** - Full 12/12 domain integration with self-healing
62
+ - **Cross-Phase Memory Unification** - Unified SQLite storage for QCSD feedback loops
69
63
  - **Zero-Breaking-Changes Migration** - Full v2 backward compatibility
70
- - **Browser Automation** (v3.1.0) - @claude-flow/browser integration with 9 workflow templates
71
- - **AG-UI/A2A/A2UI Protocols** (v3.4.0) - Industry-standard agent communication
64
+ - **Browser Automation** - @claude-flow/browser integration with 9 workflow templates
65
+ - **AG-UI/A2A/A2UI Protocols** - Industry-standard agent communication
72
66
 
73
67
  ## Get Value Fast
74
68
 
@@ -87,9 +81,9 @@ claude "Run quality assessment: tests, coverage, security, and deployment recomm
87
81
  aqe status --verbose
88
82
  ```
89
83
 
90
- ## New in v3: Key Features
84
+ ## Architecture Highlights
91
85
 
92
- ### AG-UI, A2A & A2UI Protocols (v3.4.0)
86
+ ### AG-UI, A2A & A2UI Protocols
93
87
 
94
88
  Industry-standard agent communication protocols:
95
89
 
@@ -115,7 +109,7 @@ await a2aAdapter.delegateTask({
115
109
  });
116
110
  ```
117
111
 
118
- ### Trust Tiers - Skill Validation (v3.4.2)
112
+ ### Trust Tiers - Skill Validation
119
113
 
120
114
  4-layer validation system ensuring deterministic, trustworthy skill outputs:
121
115
 
@@ -137,7 +131,7 @@ aqe eval run --skill security-testing --model claude-sonnet-4
137
131
  aqe skill report --input results/ --output validation-report.md
138
132
  ```
139
133
 
140
- ### TinyDancer Intelligent Model Routing (ADR-026)
134
+ ### TinyDancer Intelligent Model Routing
141
135
 
142
136
  3-tier intelligent model routing for cost optimization:
143
137
 
@@ -158,7 +152,7 @@ Background neural consolidation for continuous improvement:
158
152
  - **EWC++ Protection**: Elastic Weight Consolidation prevents catastrophic forgetting
159
153
  - **Novelty Scoring**: Prioritize learning from novel patterns
160
154
 
161
- ### Consensus & MinCut Coordination (v3.3.3)
155
+ ### Consensus & MinCut Coordination
162
156
 
163
157
  Advanced coordination for reliable multi-agent decisions with **full 12/12 domain integration**:
164
158
 
@@ -170,7 +164,7 @@ Advanced coordination for reliable multi-agent decisions with **full 12/12 domai
170
164
  - **Topology-Aware Routing**: `getTopologyBasedRouting()` avoids weak vertices
171
165
  - **Self-Healing Triggers**: `shouldPauseOperations()` enables automatic recovery
172
166
 
173
- ### Coherence-Gated Quality Engineering (v3.3.0)
167
+ ### Coherence-Gated Quality Engineering
174
168
 
175
169
  Mathematical verification using Prime Radiant WASM engines:
176
170