agentic-qe 3.0.0 → 3.0.6
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 +14 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-qe",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.6",
|
|
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",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"aqe-mcp": "./v3/dist/mcp/bundle.js"
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
|
-
"postinstall": "cd v3 && npm install",
|
|
14
|
+
"postinstall": "test -f v3/package.json && cd v3 && npm install || true",
|
|
15
15
|
"build": "cd v3 && npm run build",
|
|
16
16
|
"test": "cd v3 && npm test -- --run",
|
|
17
17
|
"test:v3": "cd v3 && npm test -- --run",
|
|
@@ -83,9 +83,12 @@
|
|
|
83
83
|
"@opentelemetry/sdk-trace-base": "^1.28.0",
|
|
84
84
|
"@opentelemetry/sdk-trace-node": "^1.28.0",
|
|
85
85
|
"@opentelemetry/semantic-conventions": "^1.28.0",
|
|
86
|
+
"@ruvector/attention": "0.1.3",
|
|
86
87
|
"@ruvector/core": "^0.1.15",
|
|
88
|
+
"@ruvector/gnn": "0.1.19",
|
|
87
89
|
"@ruvector/nervous-system-wasm": "^0.1.29",
|
|
88
90
|
"@ruvector/ruvllm": "^0.2.3",
|
|
91
|
+
"@ruvector/sona": "0.1.5",
|
|
89
92
|
"@supabase/supabase-js": "^2.89.0",
|
|
90
93
|
"@types/cli-progress": "^3.11.6",
|
|
91
94
|
"@types/pg": "^8.16.0",
|
|
@@ -108,6 +111,7 @@
|
|
|
108
111
|
"fast-glob": "^3.3.3",
|
|
109
112
|
"fs-extra": "^11.1.1",
|
|
110
113
|
"graphql": "^16.11.0",
|
|
114
|
+
"hnswlib-node": "^3.0.0",
|
|
111
115
|
"inquirer": "^8.2.6",
|
|
112
116
|
"ioredis": "^5.8.2",
|
|
113
117
|
"openai": "^6.9.1",
|
|
@@ -116,16 +120,22 @@
|
|
|
116
120
|
"playwright": "^1.57.0",
|
|
117
121
|
"react-dom": "^19.2.3",
|
|
118
122
|
"ruvector": "0.1.24",
|
|
123
|
+
"secure-json-parse": "^4.1.0",
|
|
119
124
|
"tree-sitter-wasms": "^0.1.13",
|
|
120
125
|
"ts-morph": "^27.0.2",
|
|
121
126
|
"uuid": "^11.0.5",
|
|
127
|
+
"vibium": "^0.1.2",
|
|
122
128
|
"web-tree-sitter": "^0.22.6",
|
|
123
129
|
"winston": "^3.18.3",
|
|
124
130
|
"ws": "^8.18.3",
|
|
125
131
|
"yaml": "^2.8.1"
|
|
126
132
|
},
|
|
127
133
|
"optionalDependencies": {
|
|
134
|
+
"@ruvector/attention-darwin-arm64": "0.1.3",
|
|
135
|
+
"@ruvector/attention-linux-arm64-gnu": "0.1.3",
|
|
128
136
|
"@ruvector/edge": "^0.1.9",
|
|
137
|
+
"@ruvector/gnn-darwin-arm64": "0.1.19",
|
|
138
|
+
"@ruvector/gnn-linux-arm64-gnu": "0.1.19",
|
|
129
139
|
"@ruvector/node-linux-arm64-gnu": "^0.1.16",
|
|
130
140
|
"@ruvector/node-linux-x64-gnu": "^0.1.16",
|
|
131
141
|
"ruvector-core-linux-arm64-gnu": "^0.1.15",
|
|
@@ -136,6 +146,8 @@
|
|
|
136
146
|
"stack-utils": "^2.0.6"
|
|
137
147
|
},
|
|
138
148
|
"overrides": {
|
|
149
|
+
"@ruvector/gnn-linux-x64-musl": "npm:@ruvector/gnn-linux-x64-gnu@0.1.19",
|
|
150
|
+
"@ruvector/gnn-linux-arm64-musl": "npm:@ruvector/gnn-linux-arm64-gnu@0.1.19",
|
|
139
151
|
"tree-sitter-go": {
|
|
140
152
|
"tree-sitter": "$tree-sitter"
|
|
141
153
|
},
|