agentic-qe 3.8.8 → 3.8.10

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 (30) hide show
  1. package/.claude/skills/skills-manifest.json +1 -1
  2. package/CHANGELOG.md +27 -0
  3. package/dist/cli/bundle.js +731 -730
  4. package/dist/cli/commands/ruvector-commands.js +41 -1
  5. package/dist/coordination/protocols/defect-investigation.js +3 -3
  6. package/dist/domains/code-intelligence/services/knowledge-graph.js +3 -0
  7. package/dist/domains/coverage-analysis/services/coverage-analyzer.d.ts +6 -0
  8. package/dist/domains/coverage-analysis/services/coverage-analyzer.js +35 -1
  9. package/dist/domains/coverage-analysis/services/coverage-parser.d.ts +72 -4
  10. package/dist/domains/coverage-analysis/services/coverage-parser.js +559 -6
  11. package/dist/domains/defect-intelligence/services/defect-predictor.js +16 -6
  12. package/dist/domains/quality-assessment/coordinator.js +8 -1
  13. package/dist/domains/quality-assessment/plugin.js +8 -5
  14. package/dist/domains/quality-assessment/services/quality-analyzer.d.ts +0 -1
  15. package/dist/domains/quality-assessment/services/quality-analyzer.js +30 -17
  16. package/dist/domains/test-execution/interfaces.d.ts +11 -0
  17. package/dist/domains/test-execution/services/test-executor.d.ts +25 -0
  18. package/dist/domains/test-execution/services/test-executor.js +236 -13
  19. package/dist/governance/proof-envelope-integration.js +10 -4
  20. package/dist/integrations/coherence/engines/witness-adapter.d.ts +5 -5
  21. package/dist/integrations/coherence/engines/witness-adapter.js +10 -22
  22. package/dist/integrations/ruvector/coherence-gate.d.ts +14 -5
  23. package/dist/integrations/ruvector/coherence-gate.js +34 -6
  24. package/dist/learning/agent-routing.d.ts +7 -2
  25. package/dist/learning/agent-routing.js +17 -1
  26. package/dist/mcp/bundle.js +378 -377
  27. package/dist/mcp/tools/coverage-analysis/index.d.ts +12 -0
  28. package/dist/mcp/tools/coverage-analysis/index.js +27 -4
  29. package/dist/workers/workers/coverage-tracker.js +25 -30
  30. package/package.json +1 -1
@@ -932,7 +932,7 @@
932
932
  },
933
933
  "metadata": {
934
934
  "generatedBy": "Agentic QE Fleet",
935
- "fleetVersion": "3.8.8",
935
+ "fleetVersion": "3.8.10",
936
936
  "manifestVersion": "1.3.0",
937
937
  "lastUpdated": "2026-02-04T00:00:00.000Z",
938
938
  "contributors": [
package/CHANGELOG.md CHANGED
@@ -5,6 +5,33 @@ 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.10] - 2026-03-26
9
+
10
+ ### Fixed
11
+
12
+ - **Coverage data pipeline** — Coverage data now flows correctly from test execution through to quality scores. Previously, `quality_assess` reported fabricated coverage (up to 95%) because it read from keys that nothing wrote to. All 5 orphaned key conventions have been unified into a consistent `coverage:latest`, `coverage:previous`, and `coverage:file:{path}` ecosystem.
13
+ - **Test runner coverage collection** — `test_execute_parallel` now passes `--coverage` flags to vitest and jest, and reads `coverage-summary.json` from disk when runners write coverage to files rather than stdout.
14
+ - **Per-file coverage storage** — Coverage data is now stored via the key-value API (not just the vector store), so quality-analyzer, defect-predictor, and defect-investigation can all read per-file coverage.
15
+ - **Coverage trend detection** — `coverage:previous` is now correctly rotated before each new snapshot, enabling quality-gate trend detection that was previously always reporting "stable".
16
+ - **Quality score fairness** — Projects without coverage tooling no longer receive a false 25-point quality score penalty. Missing coverage reports as unavailable (-1) rather than 0%.
17
+ - **Coverage tracker accuracy** — The coverage-tracker worker now reads real data from `coverage:latest` instead of returning hardcoded fake values.
18
+
19
+ ## [3.8.9] - 2026-03-25
20
+
21
+ ### Added
22
+
23
+ - **Multi-language coverage parsers** — 6 new parsers for JaCoCo (Java/Kotlin), dotcover (C#/.NET), Tarpaulin (Rust), Go cover, Kover (Kotlin/JVM), and xcresult (Swift/iOS), extending coverage analysis beyond JavaScript/TypeScript.
24
+ - **Language-aware agent routing** — Agent routing now considers source language when selecting models and strategies, with MCP schema support for the `language` parameter.
25
+ - **RuVector P1 scale benchmarks** — Production-scale benchmarks for 10K/100K vector operations, concurrency stress tests, and HNSW memory usage display in `aqe ruvector status`.
26
+ - **Knowledge graph language extensions** — Added Swift and C# file extension mappings for broader polyglot code intelligence.
27
+
28
+ ### Fixed
29
+
30
+ - **SHA-256 witness hashing** — Replaced insecure djb2 hash with SHA-256 in the witness adapter for cryptographic integrity of coherence proofs.
31
+ - **Coherence gate witness persistence** — Witnesses are now persisted to the proof envelope, ensuring audit trail continuity across sessions.
32
+ - **Hardcoded signing key removed** — Eliminated a hardcoded key from the coherence gate; signing keys are now derived from configuration.
33
+ - **Benchmark output formatting** — Fixed RuVector benchmark result display to correctly report metrics.
34
+
8
35
  ## [3.8.8] - 2026-03-24
9
36
 
10
37
  ### Added