agentic-qe 3.0.8 → 3.0.9
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/package.json +2 -1
- package/v3/package.json +128 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-qe",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.9",
|
|
4
4
|
"description": "Agentic Quality Engineering V3 - Domain-Driven Design Architecture with 12 Bounded Contexts, O(log n) coverage analysis, ReasoningBank learning, 48 specialized QE agents, deep Claude Flow integration",
|
|
5
5
|
"main": "./v3/dist/index.js",
|
|
6
6
|
"types": "./v3/dist/index.d.ts",
|
|
@@ -232,6 +232,7 @@
|
|
|
232
232
|
"files": [
|
|
233
233
|
"v3/dist/**",
|
|
234
234
|
"v3/assets/**",
|
|
235
|
+
"v3/package.json",
|
|
235
236
|
".claude/agents",
|
|
236
237
|
".claude/skills",
|
|
237
238
|
".claude/commands",
|
package/v3/package.json
ADDED
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@agentic-qe/v3",
|
|
3
|
+
"version": "3.0.9",
|
|
4
|
+
"description": "Agentic QE v3 - Domain-Driven Design Architecture with 12 Bounded Contexts, O(log n) coverage analysis, ReasoningBank learning, 47 specialized QE agents",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"aqe": "dist/cli/bundle.js",
|
|
10
|
+
"aqe-mcp": "dist/mcp/bundle.js"
|
|
11
|
+
},
|
|
12
|
+
"publishConfig": {
|
|
13
|
+
"access": "public",
|
|
14
|
+
"registry": "https://registry.npmjs.org/"
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/proffesor-for-testing/agentic-qe.git",
|
|
19
|
+
"directory": "v3"
|
|
20
|
+
},
|
|
21
|
+
"bugs": {
|
|
22
|
+
"url": "https://github.com/proffesor-for-testing/agentic-qe/issues"
|
|
23
|
+
},
|
|
24
|
+
"homepage": "https://github.com/proffesor-for-testing/agentic-qe/tree/main/v3#readme",
|
|
25
|
+
"exports": {
|
|
26
|
+
".": {
|
|
27
|
+
"import": "./dist/index.js",
|
|
28
|
+
"types": "./dist/index.d.ts"
|
|
29
|
+
},
|
|
30
|
+
"./kernel": {
|
|
31
|
+
"import": "./dist/kernel/index.js",
|
|
32
|
+
"types": "./dist/kernel/index.d.ts"
|
|
33
|
+
},
|
|
34
|
+
"./shared": {
|
|
35
|
+
"import": "./dist/shared/index.js",
|
|
36
|
+
"types": "./dist/shared/index.d.ts"
|
|
37
|
+
},
|
|
38
|
+
"./cli": {
|
|
39
|
+
"import": "./dist/cli/index.js"
|
|
40
|
+
},
|
|
41
|
+
"./ruvector": {
|
|
42
|
+
"import": "./dist/integrations/ruvector/wrappers.js",
|
|
43
|
+
"types": "./dist/integrations/ruvector/wrappers.d.ts"
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
"files": [
|
|
47
|
+
"dist",
|
|
48
|
+
"assets",
|
|
49
|
+
"scripts",
|
|
50
|
+
"README.md"
|
|
51
|
+
],
|
|
52
|
+
"scripts": {
|
|
53
|
+
"preinstall": "node scripts/preinstall.cjs",
|
|
54
|
+
"build": "tsc && npm run build:cli && npm run build:mcp",
|
|
55
|
+
"build:cli": "esbuild src/cli/index.ts --bundle --platform=node --format=esm --outfile=dist/cli/bundle.js --external:better-sqlite3 --external:hnswlib-node --external:@ruvector/* --external:@xenova/transformers --external:vibium --external:@vibium/* --banner:js=\"import { createRequire as _cr } from 'module'; import { fileURLToPath as _fp } from 'url'; import { dirname as _dn } from 'path'; const require = _cr(import.meta.url); const __filename = _fp(import.meta.url); const __dirname = _dn(__filename);\"",
|
|
56
|
+
"build:mcp": "esbuild src/mcp/entry.ts --bundle --platform=node --format=esm --outfile=dist/mcp/bundle.js --banner:js=\"#!/usr/bin/env node\\nimport { createRequire as _cr } from 'module'; import { fileURLToPath as _fp } from 'url'; import { dirname as _dn } from 'path'; const require = _cr(import.meta.url); const __filename = _fp(import.meta.url); const __dirname = _dn(__filename);\" --external:better-sqlite3 --external:hnswlib-node --external:@ruvector/* --external:@xenova/transformers --external:vibium --external:@vibium/*",
|
|
57
|
+
"prepublishOnly": "npm run sync:agents && bash scripts/prepare-assets.sh",
|
|
58
|
+
"cli": "tsx src/cli/index.ts",
|
|
59
|
+
"aqe": "tsx src/cli/index.ts",
|
|
60
|
+
"mcp": "tsx src/mcp/entry.ts",
|
|
61
|
+
"test": "vitest run",
|
|
62
|
+
"test:watch": "vitest",
|
|
63
|
+
"test:coverage": "vitest run --coverage",
|
|
64
|
+
"test:perf": "vitest bench tests/performance/",
|
|
65
|
+
"test:integration:browser": "VIBIUM_REAL_TESTS=true vitest run tests/integrations/vibium/vibium-real.test.ts",
|
|
66
|
+
"benchmark:token-reduction": "vitest bench tests/benchmarks/code-intelligence-token-reduction.bench.ts",
|
|
67
|
+
"lint": "eslint src tests --ext .ts",
|
|
68
|
+
"typecheck": "tsc --noEmit",
|
|
69
|
+
"clean": "rm -rf dist",
|
|
70
|
+
"sync:agents": "cp ../.claude/agents/v3/qe-*.md ./assets/agents/v3/ && mkdir -p ./assets/agents/v3/subagents && cp ../.claude/agents/v3/subagents/qe-*.md ./assets/agents/v3/subagents/ 2>/dev/null; echo '✓ Synced v3 QE agents (41 main + 7 subagents = 48 total)'",
|
|
71
|
+
"sync:agents:check": "echo 'Checking v3 QE agents sync status:' && for f in ../.claude/agents/v3/qe-*.md; do diff -q \"$f\" \"./assets/agents/v3/$(basename $f)\" >/dev/null 2>&1 || echo \" ⚠ $(basename $f)\"; done && for f in ../.claude/agents/v3/subagents/qe-*.md; do diff -q \"$f\" \"./assets/agents/v3/subagents/$(basename $f)\" >/dev/null 2>&1 || echo \" ⚠ subagents/$(basename $f)\"; done; echo '✓ Check complete'"
|
|
72
|
+
},
|
|
73
|
+
"keywords": [
|
|
74
|
+
"agentic",
|
|
75
|
+
"quality-engineering",
|
|
76
|
+
"testing",
|
|
77
|
+
"ai",
|
|
78
|
+
"ddd",
|
|
79
|
+
"domain-driven-design"
|
|
80
|
+
],
|
|
81
|
+
"author": "Agentic QE Team",
|
|
82
|
+
"license": "MIT",
|
|
83
|
+
"devDependencies": {
|
|
84
|
+
"@types/better-sqlite3": "^7.6.13",
|
|
85
|
+
"@types/node": "^20.10.0",
|
|
86
|
+
"@types/uuid": "^10.0.0",
|
|
87
|
+
"@vitest/coverage-v8": "^4.0.16",
|
|
88
|
+
"esbuild": "^0.27.2",
|
|
89
|
+
"glob": "^13.0.0",
|
|
90
|
+
"msw": "^2.12.7",
|
|
91
|
+
"tsx": "^4.21.0",
|
|
92
|
+
"vitest": "^4.0.16"
|
|
93
|
+
},
|
|
94
|
+
"dependencies": {
|
|
95
|
+
"@faker-js/faker": "^10.2.0",
|
|
96
|
+
"@ruvector/attention": "0.1.3",
|
|
97
|
+
"@ruvector/gnn": "0.1.19",
|
|
98
|
+
"@ruvector/sona": "0.1.5",
|
|
99
|
+
"@types/cli-progress": "^3.11.6",
|
|
100
|
+
"@xenova/transformers": "^2.17.2",
|
|
101
|
+
"axe-core": "^4.11.1",
|
|
102
|
+
"better-sqlite3": "^12.5.0",
|
|
103
|
+
"chalk": "^5.6.2",
|
|
104
|
+
"cli-progress": "^3.12.0",
|
|
105
|
+
"commander": "^12.1.0",
|
|
106
|
+
"fast-glob": "^3.3.3",
|
|
107
|
+
"hnswlib-node": "^3.0.0",
|
|
108
|
+
"ora": "^9.0.0",
|
|
109
|
+
"secure-json-parse": "^4.1.0",
|
|
110
|
+
"typescript": "^5.9.3",
|
|
111
|
+
"uuid": "^9.0.0",
|
|
112
|
+
"vibium": "^0.1.2",
|
|
113
|
+
"yaml": "^2.8.2"
|
|
114
|
+
},
|
|
115
|
+
"optionalDependencies": {
|
|
116
|
+
"@ruvector/attention-linux-arm64-gnu": "0.1.3",
|
|
117
|
+
"@ruvector/attention-darwin-arm64": "0.1.3",
|
|
118
|
+
"@ruvector/gnn-linux-arm64-gnu": "0.1.19",
|
|
119
|
+
"@ruvector/gnn-darwin-arm64": "0.1.19"
|
|
120
|
+
},
|
|
121
|
+
"overrides": {
|
|
122
|
+
"@ruvector/gnn-linux-x64-musl": "npm:@ruvector/gnn-linux-x64-gnu@0.1.19",
|
|
123
|
+
"@ruvector/gnn-linux-arm64-musl": "npm:@ruvector/gnn-linux-arm64-gnu@0.1.19"
|
|
124
|
+
},
|
|
125
|
+
"engines": {
|
|
126
|
+
"node": ">=18.0.0"
|
|
127
|
+
}
|
|
128
|
+
}
|