agentic-qe 3.7.14 → 3.7.15
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 +27 -0
- package/dist/cli/bundle.js +1187 -508
- package/dist/cli/commands/prove.d.ts +60 -0
- package/dist/cli/commands/prove.js +167 -0
- package/dist/cli/index.js +2 -0
- package/dist/domains/test-generation/pattern-injection/edge-case-injector.d.ts +6 -0
- package/dist/domains/test-generation/pattern-injection/edge-case-injector.js +30 -0
- package/dist/kernel/unified-memory-schemas.d.ts +2 -2
- package/dist/kernel/unified-memory-schemas.js +26 -1
- package/dist/kernel/unified-memory.js +32 -0
- package/dist/learning/aqe-learning-engine.js +2 -1
- package/dist/learning/daily-log.d.ts +43 -0
- package/dist/learning/daily-log.js +91 -0
- package/dist/learning/experience-capture.d.ts +42 -0
- package/dist/learning/experience-capture.js +94 -4
- package/dist/learning/index.d.ts +4 -0
- package/dist/learning/index.js +8 -0
- package/dist/learning/opd-remediation.d.ts +55 -0
- package/dist/learning/opd-remediation.js +130 -0
- package/dist/learning/pattern-lifecycle.d.ts +12 -1
- package/dist/learning/pattern-lifecycle.js +18 -2
- package/dist/learning/pattern-store.d.ts +12 -4
- package/dist/learning/pattern-store.js +178 -19
- package/dist/learning/qe-hooks.d.ts +1 -0
- package/dist/learning/qe-hooks.js +30 -0
- package/dist/learning/qe-patterns.d.ts +6 -0
- package/dist/learning/qe-patterns.js +10 -1
- package/dist/learning/sqlite-persistence.d.ts +40 -0
- package/dist/learning/sqlite-persistence.js +228 -1
- package/dist/mcp/bundle.js +647 -20
- package/dist/mcp/handlers/core-handlers.d.ts +5 -0
- package/dist/mcp/handlers/core-handlers.js +11 -0
- package/dist/mcp/index.d.ts +1 -0
- package/dist/mcp/index.js +2 -0
- package/dist/mcp/tool-scoping.d.ts +36 -0
- package/dist/mcp/tool-scoping.js +129 -0
- package/package.json +1 -1
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.7.15] - 2026-03-09
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Proof-of-Quality CLI command** — `aqe prove` generates verifiable quality attestations with SHA-256 hashes, proving that tests, coverage, and security checks were actually run.
|
|
13
|
+
- **OPD remediation hints** — Outcome-Pattern-Deviation engine now explains *why* a pattern failed and *how* to fix it ("bad because X, fix by Y").
|
|
14
|
+
- **Per-agent MCP tool scoping** — Agents can now be restricted to specific MCP tool subsets for security isolation and least-privilege enforcement.
|
|
15
|
+
- **Daily Markdown learning log** — Automatic audit trail of all learning activity per day, with session summaries and pattern metrics.
|
|
16
|
+
- **FTS5 hybrid search** — Full-text search virtual table combining vector similarity with text matching for more accurate pattern retrieval.
|
|
17
|
+
- **Binary reward assignment** — Outcome-based learning now uses clean +1/-1/0 rewards for sharper signal.
|
|
18
|
+
- **Temporal decay on search** — Search results now apply a 30-day half-life decay, surfacing recent patterns over stale ones.
|
|
19
|
+
- **Pre-compaction flush hook** — Prevents knowledge loss by flushing pending writes before database compaction.
|
|
20
|
+
- **Embedding backfill script** — `scripts/backfill-embeddings.mjs` fills in missing embeddings for legacy patterns.
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
|
|
24
|
+
- **Promotion threshold inconsistency** — Standardized pattern promotion threshold to 3 across all code paths.
|
|
25
|
+
- **Queen governance test flakiness** — Fixed singleton contamination in domain-handlers, handler-factory, and e2e test suites.
|
|
26
|
+
- **MCP server domain tool failures** — Resolved timeout and invocation failures in domain-scoped MCP tool tests.
|
|
27
|
+
- **Devil's advocate scoring** — Fixed FTS normalization, score capping, decay, and freshness calculations.
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
|
|
31
|
+
- Coherence gate enabled by default for all learning sessions.
|
|
32
|
+
- Configurable promotion activity window replaces hardcoded 7-day window.
|
|
33
|
+
- 18,589 tests passing across 610 test files.
|
|
34
|
+
|
|
8
35
|
## [3.7.14] - 2026-03-08
|
|
9
36
|
|
|
10
37
|
### Added
|