agentic-qe 3.6.10 → 3.6.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.
Files changed (71) hide show
  1. package/.claude/skills/skills-manifest.json +1 -1
  2. package/package.json +1 -1
  3. package/v3/CHANGELOG.md +25 -0
  4. package/v3/dist/cli/bundle.js +464 -339
  5. package/v3/dist/cli/commands/code.d.ts.map +1 -1
  6. package/v3/dist/cli/commands/code.js +9 -85
  7. package/v3/dist/cli/commands/code.js.map +1 -1
  8. package/v3/dist/cli/commands/coverage.d.ts.map +1 -1
  9. package/v3/dist/cli/commands/coverage.js +3 -28
  10. package/v3/dist/cli/commands/coverage.js.map +1 -1
  11. package/v3/dist/cli/commands/security.d.ts.map +1 -1
  12. package/v3/dist/cli/commands/security.js +3 -29
  13. package/v3/dist/cli/commands/security.js.map +1 -1
  14. package/v3/dist/cli/commands/test.d.ts.map +1 -1
  15. package/v3/dist/cli/commands/test.js +5 -58
  16. package/v3/dist/cli/commands/test.js.map +1 -1
  17. package/v3/dist/cli/utils/file-discovery.d.ts +27 -0
  18. package/v3/dist/cli/utils/file-discovery.d.ts.map +1 -0
  19. package/v3/dist/cli/utils/file-discovery.js +105 -0
  20. package/v3/dist/cli/utils/file-discovery.js.map +1 -0
  21. package/v3/dist/coordination/task-executor.d.ts.map +1 -1
  22. package/v3/dist/coordination/task-executor.js +304 -44
  23. package/v3/dist/coordination/task-executor.js.map +1 -1
  24. package/v3/dist/domains/code-intelligence/coordinator.d.ts.map +1 -1
  25. package/v3/dist/domains/code-intelligence/coordinator.js +8 -1
  26. package/v3/dist/domains/code-intelligence/coordinator.js.map +1 -1
  27. package/v3/dist/domains/code-intelligence/services/metric-collector/index.d.ts.map +1 -1
  28. package/v3/dist/domains/code-intelligence/services/metric-collector/index.js +10 -0
  29. package/v3/dist/domains/code-intelligence/services/metric-collector/index.js.map +1 -1
  30. package/v3/dist/domains/code-intelligence/services/metric-collector/interfaces.d.ts +7 -1
  31. package/v3/dist/domains/code-intelligence/services/metric-collector/interfaces.d.ts.map +1 -1
  32. package/v3/dist/domains/code-intelligence/services/metric-collector/interfaces.js +10 -1
  33. package/v3/dist/domains/code-intelligence/services/metric-collector/interfaces.js.map +1 -1
  34. package/v3/dist/domains/code-intelligence/services/metric-collector/loc-counter.js +34 -10
  35. package/v3/dist/domains/code-intelligence/services/metric-collector/loc-counter.js.map +1 -1
  36. package/v3/dist/domains/coverage-analysis/services/hnsw-index.d.ts +9 -0
  37. package/v3/dist/domains/coverage-analysis/services/hnsw-index.d.ts.map +1 -1
  38. package/v3/dist/domains/coverage-analysis/services/hnsw-index.js +38 -3
  39. package/v3/dist/domains/coverage-analysis/services/hnsw-index.js.map +1 -1
  40. package/v3/dist/init/init-wizard-hooks.d.ts +8 -1
  41. package/v3/dist/init/init-wizard-hooks.d.ts.map +1 -1
  42. package/v3/dist/init/init-wizard-hooks.js +47 -39
  43. package/v3/dist/init/init-wizard-hooks.js.map +1 -1
  44. package/v3/dist/init/phases/07-hooks.d.ts +11 -1
  45. package/v3/dist/init/phases/07-hooks.d.ts.map +1 -1
  46. package/v3/dist/init/phases/07-hooks.js +46 -50
  47. package/v3/dist/init/phases/07-hooks.js.map +1 -1
  48. package/v3/dist/init/settings-merge.d.ts +35 -0
  49. package/v3/dist/init/settings-merge.d.ts.map +1 -0
  50. package/v3/dist/init/settings-merge.js +140 -0
  51. package/v3/dist/init/settings-merge.js.map +1 -0
  52. package/v3/dist/integrations/agentic-flow/model-router/router.js +1 -1
  53. package/v3/dist/integrations/agentic-flow/model-router/router.js.map +1 -1
  54. package/v3/dist/integrations/agentic-flow/model-router/score-calculator.d.ts.map +1 -1
  55. package/v3/dist/integrations/agentic-flow/model-router/score-calculator.js +18 -3
  56. package/v3/dist/integrations/agentic-flow/model-router/score-calculator.js.map +1 -1
  57. package/v3/dist/integrations/agentic-flow/model-router/signal-collector.d.ts +3 -3
  58. package/v3/dist/integrations/agentic-flow/model-router/signal-collector.d.ts.map +1 -1
  59. package/v3/dist/integrations/agentic-flow/model-router/signal-collector.js +18 -0
  60. package/v3/dist/integrations/agentic-flow/model-router/signal-collector.js.map +1 -1
  61. package/v3/dist/mcp/bundle.js +546 -96
  62. package/v3/dist/mcp/handlers/domain-handler-configs.d.ts.map +1 -1
  63. package/v3/dist/mcp/handlers/domain-handler-configs.js +40 -31
  64. package/v3/dist/mcp/handlers/domain-handler-configs.js.map +1 -1
  65. package/v3/dist/mcp/handlers/task-handlers.d.ts.map +1 -1
  66. package/v3/dist/mcp/handlers/task-handlers.js +68 -5
  67. package/v3/dist/mcp/handlers/task-handlers.js.map +1 -1
  68. package/v3/dist/mcp/protocol-server.d.ts.map +1 -1
  69. package/v3/dist/mcp/protocol-server.js +16 -2
  70. package/v3/dist/mcp/protocol-server.js.map +1 -1
  71. package/v3/package.json +1 -1
@@ -904,7 +904,7 @@
904
904
  },
905
905
  "metadata": {
906
906
  "generatedBy": "Agentic QE Fleet",
907
- "fleetVersion": "3.6.10",
907
+ "fleetVersion": "3.6.11",
908
908
  "manifestVersion": "1.3.0",
909
909
  "lastUpdated": "2026-02-04T00:00:00.000Z",
910
910
  "contributors": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentic-qe",
3
- "version": "3.6.10",
3
+ "version": "3.6.11",
4
4
  "description": "Agentic Quality Engineering V3 - Domain-Driven Design Architecture with 13 Bounded Contexts, O(log n) coverage analysis, ReasoningBank learning, 59 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",
package/v3/CHANGELOG.md CHANGED
@@ -5,6 +5,31 @@ All notable changes to Agentic QE will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [3.6.11] - 2026-02-18
9
+
10
+ ### Added
11
+
12
+ - **Smart settings merge for `aqe init --auto`** — Init now detects existing AQE hooks and updates them in-place instead of duplicating. Non-AQE user hooks are preserved. Both modular and wizard init paths share the same merge logic.
13
+ - **Multi-language file discovery** — New shared `file-discovery.ts` utility supports 12+ languages (TypeScript, Python, Go, Rust, Java, Kotlin, Ruby, C#, PHP, Swift, C/C++, Scala). Used by all CLI commands.
14
+ - **Accuracy indicator on metrics** (#281) — `ProjectMetrics` now includes an `accuracy` field (`accurate` | `approximate`) so consumers know whether LOC/test counts come from real file analysis or estimation.
15
+
16
+ ### Fixed
17
+
18
+ - **MCP server crash on malformed requests** (#274) — Added try/catch safety wrapper on `onRequest` handler. Malformed tool calls now return structured errors instead of killing the MCP connection.
19
+ - **`code_index` hardcoded to JS/TS only** (#275) — Replaced inline TypeScript-only file walkers in `code`, `coverage`, `security`, and `test` CLI commands with the shared multi-language discovery utility.
20
+ - **`test_generate_enhanced` temp file extension** (#274) — Temp file now uses the correct extension based on the `language` parameter instead of always `.ts`.
21
+ - **Coverage handler returned synthetic file paths** (#276) — Removed fabricated `src/module0.ts` placeholders from coverage results. Only real file paths are returned.
22
+ - **Model router fallback score went negative** (#278) — Fixed `fallbackToLLM: -1` with `Math.max(0, ...)`. Improved complexity scoring with proper tier thresholds and domain-specific floors.
23
+ - **HNSW index panic on dimension mismatch** (#277) — `validateVector()` now resizes vectors (averaging to shrink, zero-padding to grow) instead of throwing on 768→128 mismatch.
24
+ - **LOC counter accuracy for node-native fallback** (#281) — Expanded `excludeDirs` with Python, Java, and framework directories. Added max file size guard (2MB), depth limit, and dot-directory exclusion. Renamed source from `'fallback'` to `'node-native'` since it reads real files.
25
+ - **Init wizard missing `--json` flags on hooks** — Legacy wizard path hooks now include `--json` flags matching the working configuration.
26
+ - **MCP server name mismatch** — Changed from `'aqe'` to `'agentic-qe'` with migration for old entries.
27
+
28
+ ### Changed
29
+
30
+ - **Cross-language security scanning** — `task-executor.ts` now applies regex-based security patterns (hardcoded secrets, SQL injection, CORS misconfig) to non-JS/TS files during `test_generate_enhanced`.
31
+ - **Model routing enrichment** — `task_orchestrate` and `model_route` MCP handlers now infer domain and criticality from task descriptions for better routing decisions.
32
+
8
33
  ## [3.6.10] - 2026-02-18
9
34
 
10
35
  ### Added