agentic-qe 3.4.0 → 3.4.1
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/CHANGELOG.md +23 -0
- package/package.json +1 -1
- package/v3/dist/cli/bundle.js +6220 -3633
- package/v3/dist/mcp/bundle.js +10043 -3630
- package/v3/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,29 @@ 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.4.1] - 2026-02-01
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **MCP bundle missing dependencies** - Fixed issue #219 where `aqe-mcp` failed to start due to missing packages (`fast-json-patch`, `jose`, `uuid`, etc.)
|
|
13
|
+
- Changed build scripts from `--packages=external` to selective externalization
|
|
14
|
+
- Pure JS dependencies now bundled inline (no separate install needed)
|
|
15
|
+
- Native modules properly externalized (`better-sqlite3`, `hnswlib-node`, `@ruvector/*`)
|
|
16
|
+
- CommonJS modules with dynamic requires externalized (`typescript`, `fast-glob`, `yaml`, `commander`, `cli-progress`, `ora`)
|
|
17
|
+
- Bundle size reduced from ~15MB to ~5MB
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- **Build script improvements** - `v3/scripts/build-mcp.js` and `v3/scripts/build-cli.js` now use explicit `--external:` flags instead of `--packages=external`
|
|
22
|
+
|
|
23
|
+
## [3.4.0] - 2026-01-31
|
|
24
|
+
|
|
25
|
+
### Added
|
|
26
|
+
|
|
27
|
+
- **All 12 QE domains enabled by default** - No longer requires manual domain activation
|
|
28
|
+
- **Enhanced MCP server** - 31 tools registered for comprehensive QE automation
|
|
29
|
+
- **Improved agent coordination** - Better swarm topology and task orchestration
|
|
30
|
+
|
|
8
31
|
## [3.1.5] - 2026-01-22
|
|
9
32
|
|
|
10
33
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-qe",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.1",
|
|
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",
|