agentic-qe 3.8.10 → 3.8.11
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 +16 -0
- package/dist/cli/bundle.js +1028 -782
- package/dist/cli/command-registry.js +5 -1
- package/dist/cli/commands/pipeline.d.ts +16 -0
- package/dist/cli/commands/pipeline.js +314 -0
- package/dist/cli/commands/token-usage.js +24 -1
- package/dist/cli/handlers/heartbeat-handler.d.ts +26 -0
- package/dist/cli/handlers/heartbeat-handler.js +382 -0
- package/dist/cli/handlers/index.d.ts +2 -0
- package/dist/cli/handlers/index.js +2 -0
- package/dist/cli/handlers/routing-handler.d.ts +22 -0
- package/dist/cli/handlers/routing-handler.js +227 -0
- package/dist/cli/index.js +2 -0
- package/dist/coordination/deterministic-actions.d.ts +36 -0
- package/dist/coordination/deterministic-actions.js +257 -0
- package/dist/coordination/workflow-orchestrator.d.ts +18 -1
- package/dist/coordination/workflow-orchestrator.js +113 -3
- package/dist/coordination/workflow-types.d.ts +19 -1
- package/dist/coordination/workflow-types.js +3 -0
- package/dist/coordination/yaml-pipeline-loader.d.ts +1 -0
- package/dist/coordination/yaml-pipeline-loader.js +34 -0
- package/dist/mcp/bundle.js +394 -376
- package/dist/mcp/handlers/heartbeat-handlers.d.ts +67 -0
- package/dist/mcp/handlers/heartbeat-handlers.js +180 -0
- package/dist/mcp/handlers/index.d.ts +2 -1
- package/dist/mcp/handlers/index.js +5 -1
- package/dist/mcp/handlers/task-handlers.d.ts +28 -0
- package/dist/mcp/handlers/task-handlers.js +39 -0
- package/dist/mcp/protocol-server.js +45 -1
- package/dist/mcp/server.js +41 -1
- package/dist/optimization/index.d.ts +2 -0
- package/dist/optimization/index.js +1 -0
- package/dist/optimization/session-cache.d.ts +80 -0
- package/dist/optimization/session-cache.js +227 -0
- package/dist/optimization/token-optimizer-service.d.ts +10 -0
- package/dist/optimization/token-optimizer-service.js +51 -0
- package/dist/routing/economic-routing.d.ts +126 -0
- package/dist/routing/economic-routing.js +290 -0
- package/dist/routing/index.d.ts +2 -0
- package/dist/routing/index.js +2 -0
- package/dist/routing/routing-feedback.d.ts +29 -0
- package/dist/routing/routing-feedback.js +75 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,22 @@ 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.11] - 2026-03-27
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **YAML deterministic QE pipelines** — Declarative, token-free quality gates with approval steps, auto-approve timeouts, and 4 built-in SQL-only actions (quality-gate, coverage-threshold, pattern-health, routing-accuracy). Full CLI support via `aqe pipeline load/validate/run/list/status/approve/reject`.
|
|
13
|
+
- **Heartbeat CLI and MCP integration** — Manage the token-free heartbeat scheduler with `aqe heartbeat status/run-now/history/log/pause/resume` and 3 MCP tools. Includes history persistence and daily log viewing.
|
|
14
|
+
- **Economic routing model** — Quality-per-dollar tier scoring with budget-aware selection, cost-adjusted rewards for the neural router, and EMA-smoothed quality estimates. Opt-in via `enableEconomicRouting()`. CLI: `aqe routing economics/accuracy/metrics`. MCP: `routing_economics`.
|
|
15
|
+
- **Session operation cache** — O(1) fingerprint-based cache for repeated operations, running before HNSW similarity search. SHA-256 fingerprinting with TTL, capacity eviction, and cross-session persistence via SQLite. Delivers 40-60% token savings on repeated tasks.
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- **Path traversal in heartbeat log** — CLI `heartbeat log --date` now validates date format (`YYYY-MM-DD`) to prevent directory traversal attacks, matching the MCP handler's validation.
|
|
20
|
+
- **Approval gate cleanup** — Pending approval gates are now properly resolved when a workflow is cancelled, preventing timer leaks and dangling promises.
|
|
21
|
+
- **Economic config validation** — Routing config weights are clamped to valid ranges and normalized to sum to 1.0, preventing score inflation from invalid inputs.
|
|
22
|
+
- **Sort mutation in tier selection** — `selectTier()` fallback paths no longer mutate the original scores array, ensuring consistent `economicScore` descending order in returned results.
|
|
23
|
+
|
|
8
24
|
## [3.8.10] - 2026-03-26
|
|
9
25
|
|
|
10
26
|
### Fixed
|