agentic-qe 3.1.0 → 3.1.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 CHANGED
@@ -5,6 +5,20 @@ 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.1.1] - 2026-01-22
9
+
10
+ ### Fixed
11
+
12
+ - **Critical: Missing `typescript` dependency** - Moved `typescript` from `devDependencies` to `dependencies` in root package.json. This fixes the `Cannot find package 'typescript'` error when running `aqe --version` after npm install.
13
+
14
+ ### Added
15
+
16
+ - **docs/PUBLISH-STRUCTURE.md** - Documentation explaining the package publishing structure:
17
+ - Which package.json is published (root, not v3)
18
+ - Where to add dependencies (root dependencies, not devDependencies)
19
+ - Build process and entry points
20
+ - Troubleshooting guide for common issues
21
+
8
22
  ## [3.1.0] - 2026-01-22
9
23
 
10
24
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-qe",
3
- "version": "3.1.0",
3
+ "version": "3.1.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, deep Claude Flow integration",
5
5
  "main": "./v3/dist/index.js",
6
6
  "types": "./v3/dist/index.d.ts",
@@ -128,7 +128,8 @@
128
128
  "web-tree-sitter": "^0.22.6",
129
129
  "winston": "^3.18.3",
130
130
  "ws": "^8.18.3",
131
- "yaml": "^2.8.1"
131
+ "yaml": "^2.8.1",
132
+ "typescript": "^5.9.3"
132
133
  },
133
134
  "optionalDependencies": {
134
135
  "@ruvector/attention-darwin-arm64": "0.1.3",
@@ -214,7 +215,6 @@
214
215
  "ts-node": "^10.9.1",
215
216
  "tsx": "^4.20.6",
216
217
  "typedoc": "^0.28.13",
217
- "typescript": "^5.9.3",
218
218
  "vite": "^7.3.0"
219
219
  },
220
220
  "engines": {
@@ -83268,7 +83268,7 @@ async function cleanupAndExit(code = 0) {
83268
83268
  process.exit(code);
83269
83269
  }
83270
83270
  var program = new Command4();
83271
- var VERSION = true ? "3.1.0" : "0.0.0-dev";
83271
+ var VERSION = true ? "3.1.1" : "0.0.0-dev";
83272
83272
  program.name("aqe").description("Agentic QE - Domain-Driven Quality Engineering").version(VERSION);
83273
83273
  program.command("init").description("Initialize the AQE v3 system").option("-d, --domains <domains>", "Comma-separated list of domains to enable", "all").option("-m, --max-agents <number>", "Maximum concurrent agents", "15").option("--memory <backend>", "Memory backend (sqlite|agentdb|hybrid)", "hybrid").option("--lazy", "Enable lazy loading of domains").option("--wizard", "Run interactive setup wizard").option("--auto", "Auto-configure based on project analysis").option("--minimal", "Minimal configuration (skip optional features)").option("--skip-patterns", "Skip loading pre-trained patterns").option("--with-n8n", "Install n8n workflow testing agents and skills").option("--auto-migrate", "Automatically migrate from v2 if detected").action(async (options) => {
83274
83274
  try {
package/v3/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentic-qe/v3",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "Agentic QE v3 - Domain-Driven Design Architecture with 12 Bounded Contexts, O(log n) coverage analysis, ReasoningBank learning, 51 specialized QE agents",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",