@elench/testkit 0.1.93 → 0.1.96
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/README.md +20 -7
- package/lib/cli/agents/providers/claude.mjs +28 -5
- package/lib/cli/agents/providers/shared.mjs +5 -0
- package/lib/cli/assistant/app.mjs +112 -83
- package/lib/cli/assistant/command-plan.mjs +227 -0
- package/lib/cli/assistant/context-pack.mjs +3 -3
- package/lib/cli/assistant/context-window.mjs +69 -0
- package/lib/cli/assistant/prompt-builder.mjs +4 -1
- package/lib/cli/assistant/session.mjs +7 -0
- package/lib/cli/assistant/state.mjs +55 -2
- package/lib/cli/assistant/tool-registry.mjs +35 -42
- package/lib/cli/assistant/view-model.mjs +132 -0
- package/lib/runtime-src/k6/http-checks.js +17 -59
- package/lib/runtime-src/shared/http-check-plan.mjs +53 -0
- package/node_modules/@elench/next-analysis/package.json +1 -1
- package/node_modules/@elench/testkit-bridge/package.json +2 -2
- package/node_modules/@elench/testkit-protocol/package.json +1 -1
- package/node_modules/@elench/ts-analysis/package.json +1 -1
- package/package.json +7 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elench/testkit",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.96",
|
|
4
4
|
"description": "Assistant-first CLI for running, inspecting, and debugging local testkit suites",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"workspaces": [
|
|
@@ -59,7 +59,8 @@
|
|
|
59
59
|
"build:packages": "npm --workspace packages/testkit-protocol run build && npm --workspace packages/ts-analysis run build && npm --workspace packages/next-analysis run build && npm --workspace packages/testkit-bridge run build",
|
|
60
60
|
"typecheck:packages": "npm --workspace packages/testkit-protocol run typecheck && npm --workspace packages/ts-analysis run typecheck && npm --workspace packages/next-analysis run typecheck && npm --workspace packages/testkit-bridge run typecheck && npm --workspace packages/testkit-extension run compile",
|
|
61
61
|
"test": "npm run build:packages && vitest run",
|
|
62
|
-
"test:
|
|
62
|
+
"test:audit": "node scripts/test-boundary-audit.mjs",
|
|
63
|
+
"test:unit": "npm run build:packages && npm run test:audit && vitest run --config vitest.unit.config.mjs",
|
|
63
64
|
"test:integration": "npm run build:packages && vitest run test/integration",
|
|
64
65
|
"test:system": "npm run build:packages && vitest run test/system --passWithNoTests"
|
|
65
66
|
},
|
|
@@ -82,10 +83,10 @@
|
|
|
82
83
|
},
|
|
83
84
|
"dependencies": {
|
|
84
85
|
"@babel/code-frame": "^7.29.0",
|
|
85
|
-
"@elench/next-analysis": "0.1.
|
|
86
|
-
"@elench/testkit-bridge": "0.1.
|
|
87
|
-
"@elench/testkit-protocol": "0.1.
|
|
88
|
-
"@elench/ts-analysis": "0.1.
|
|
86
|
+
"@elench/next-analysis": "0.1.96",
|
|
87
|
+
"@elench/testkit-bridge": "0.1.96",
|
|
88
|
+
"@elench/testkit-protocol": "0.1.96",
|
|
89
|
+
"@elench/ts-analysis": "0.1.96",
|
|
89
90
|
"@oclif/core": "^4.10.6",
|
|
90
91
|
"esbuild": "^0.25.11",
|
|
91
92
|
"execa": "^9.5.0",
|