agentic-qe 3.8.6 → 3.8.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.
- package/.claude/skills/skills-manifest.json +1 -1
- package/CHANGELOG.md +26 -0
- package/assets/governance/constitution.md +1 -1
- package/assets/governance/shards/chaos-resilience.shard.md +1 -1
- package/assets/governance/shards/code-intelligence.shard.md +1 -1
- package/assets/governance/shards/contract-testing.shard.md +1 -1
- package/assets/governance/shards/coverage-analysis.shard.md +1 -1
- package/assets/governance/shards/defect-intelligence.shard.md +1 -1
- package/assets/governance/shards/learning-optimization.shard.md +1 -1
- package/assets/governance/shards/quality-assessment.shard.md +1 -1
- package/assets/governance/shards/requirements-validation.shard.md +1 -1
- package/assets/governance/shards/security-compliance.shard.md +1 -1
- package/assets/governance/shards/test-execution.shard.md +1 -1
- package/assets/governance/shards/test-generation.shard.md +1 -1
- package/assets/governance/shards/visual-accessibility.shard.md +1 -1
- package/dist/cli/bundle.js +732 -660
- package/dist/cli/command-registry.js +3 -1
- package/dist/cli/completions/index.d.ts +17 -0
- package/dist/cli/completions/index.js +49 -1
- package/dist/cli/handlers/hypergraph-handler.d.ts +27 -0
- package/dist/cli/handlers/hypergraph-handler.js +248 -0
- package/dist/cli/handlers/index.d.ts +1 -0
- package/dist/cli/handlers/index.js +1 -0
- package/dist/coordination/protocols/code-intelligence-index.js +2 -11
- package/dist/domains/code-intelligence/coordinator-hypergraph.js +1 -1
- package/dist/domains/code-intelligence/coordinator.d.ts +5 -0
- package/dist/domains/code-intelligence/coordinator.js +35 -3
- package/dist/init/phases/06-code-intelligence.d.ts +8 -3
- package/dist/init/phases/06-code-intelligence.js +70 -32
- package/dist/mcp/bundle.js +1059 -1058
- package/dist/mcp/handlers/hypergraph-handler.d.ts +27 -0
- package/dist/mcp/handlers/hypergraph-handler.js +140 -0
- package/dist/mcp/handlers/index.d.ts +1 -0
- package/dist/mcp/handlers/index.js +2 -0
- package/dist/mcp/server.js +19 -0
- package/dist/mcp/tool-scoping.js +5 -0
- package/dist/shared/code-index-extractor.d.ts +23 -0
- package/dist/shared/code-index-extractor.js +101 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,32 @@ 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
|
+
## [3.8.7] - 2026-03-23
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Hypergraph CLI commands** — New `aqe hypergraph` subcommands (`stats`, `untested`, `impacted`, `gaps`) for querying the code knowledge hypergraph directly from the terminal.
|
|
13
|
+
- **Hypergraph MCP tool** — `hypergraph_query` MCP tool exposes the same queries to AI agents, added to 5 agent role scopes.
|
|
14
|
+
- **Code index extractor** — Shared async batched extractor for functions, classes, interfaces, arrow functions, and method definitions with 12 unit tests.
|
|
15
|
+
- **Shell completions for hypergraph** — Bash, Zsh, Fish, and PowerShell completion support for hypergraph subcommands.
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- **Unified hypergraph persistence** — Eliminated separate `hypergraph.db` file; all hypergraph data now persists in the unified `memory.db` alongside other QE tables.
|
|
20
|
+
- **Stale governance shard paths** — Updated 12 governance shards + constitution from `v3/src/domains/` to `src/domains/`.
|
|
21
|
+
- **Init phase 06 hypergraph bootstrap** — `aqe init --auto` now builds hypergraph tables during code intelligence initialization.
|
|
22
|
+
- **Connection leak in CLI handler** — Added `ensureInitialized` guard and proper cleanup in hypergraph CLI handler.
|
|
23
|
+
- **HypergraphDegraded event** — Coordinator now publishes degradation events on init failure for observability.
|
|
24
|
+
|
|
25
|
+
## [3.8.6] - 2026-03-23
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
|
|
29
|
+
- **4 CodeQL ReDoS alerts resolved** — Eliminated all `js/polynomial-redos` high-severity vulnerabilities in security validators using negated character classes and unambiguous regex patterns.
|
|
30
|
+
- **58 real setTimeout calls eliminated** — Replaced with `vi.useFakeTimers()` in the top 5 flaky test files for deterministic test execution.
|
|
31
|
+
- **time-crystal.ts decomposed** — Split 1,714-line module into 6 focused modules (max 447 lines) with backward-compatible re-exports.
|
|
32
|
+
- **qe-reasoning-bank.ts decomposed** — Split 1,941-line module into 7 focused modules (max 738 lines) with backward-compatible re-exports.
|
|
33
|
+
|
|
8
34
|
## [3.8.5] - 2026-03-21
|
|
9
35
|
|
|
10
36
|
### Fixed
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
**Version**: 1.0.0
|
|
4
4
|
**Date**: 2026-02-03
|
|
5
5
|
**Authority**: Architecture Team
|
|
6
|
-
**ADR Reference**: [ADR-058](../../
|
|
6
|
+
**ADR Reference**: [ADR-058](../../docs/adrs/ADR-058-guidance-governance-integration.md)
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
@@ -66,7 +66,7 @@ INVARIANT pattern_application_before_generation:
|
|
|
66
66
|
|
|
67
67
|
## Patterns
|
|
68
68
|
|
|
69
|
-
**Domain Source**: `
|
|
69
|
+
**Domain Source**: `src/domains/test-generation/`
|
|
70
70
|
|
|
71
71
|
| Pattern | Location | Description |
|
|
72
72
|
|---------|----------|-------------|
|