@archal/cli 0.9.5 → 0.9.7
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/LICENSE +8 -0
- package/dist/index.cjs +1260 -370
- package/package.json +25 -26
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@archal/cli",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.7",
|
|
4
4
|
"description": "Pre-deployment testing for AI agents",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -40,13 +40,35 @@
|
|
|
40
40
|
"dist",
|
|
41
41
|
"twin-assets"
|
|
42
42
|
],
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
45
|
+
"commander": "^14.0.3",
|
|
46
|
+
"glob": "^11.0.3",
|
|
47
|
+
"yaml": "^2.8.2",
|
|
48
|
+
"zod": "^4.3.6"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@types/node": "^25.3.3",
|
|
52
|
+
"tsup": "^8.5.0",
|
|
53
|
+
"tsx": "^4.19.0",
|
|
54
|
+
"typescript": "^5.9.0",
|
|
55
|
+
"vitest": "^2.1.0",
|
|
56
|
+
"@archal/node-auth": "0.1.0",
|
|
57
|
+
"@archal/openclaw-runtime": "0.1.0",
|
|
58
|
+
"@archal/sandbox-runtime": "0.1.0",
|
|
59
|
+
"@archal/twin-jira": "0.1.0",
|
|
60
|
+
"@archal/twin-core": "0.1.0",
|
|
61
|
+
"@archal/seed-codegen-runtime": "0.1.0",
|
|
62
|
+
"@archal/twin-slack": "0.1.0",
|
|
63
|
+
"@archal/twin-stripe": "0.1.0",
|
|
64
|
+
"@archal/twin-github": "0.1.0"
|
|
65
|
+
},
|
|
43
66
|
"scripts": {
|
|
44
67
|
"sync:twin-assets": "node scripts/sync-twin-assets.mjs",
|
|
45
68
|
"build:base-deps": "node ../scripts/ensure-twin-core-build.mjs && node ../scripts/ensure-package-builds.mjs @archal/node-auth @archal/seed-codegen-runtime @archal/openclaw-runtime @archal/sandbox-runtime",
|
|
46
69
|
"build:test-deps": "pnpm run build:base-deps && node ../scripts/ensure-package-builds.mjs @archal/twin-github @archal/twin-jira @archal/twin-stripe",
|
|
47
70
|
"build:raw": "pnpm run sync:twin-assets && tsup --config tsup.config.ts && node scripts/stage-runtime-assets.mjs",
|
|
48
71
|
"build": "pnpm run build:base-deps && pnpm run build:raw",
|
|
49
|
-
"prepack": "pnpm run sync:twin-assets",
|
|
50
72
|
"start": "tsx src/index.ts",
|
|
51
73
|
"test:openclaw-contract:raw": "vitest run __tests__/runner/openclaw-remote.test.ts __tests__/commands/run.test.ts __tests__/runner/run-executor.test.ts",
|
|
52
74
|
"test:targeted-regressions:raw": "vitest run __tests__/commands/run.test.ts",
|
|
@@ -55,28 +77,5 @@
|
|
|
55
77
|
"test:e2e": "vitest run __tests__/e2e/",
|
|
56
78
|
"typecheck:raw": "tsc -p tsconfig.typecheck.json --noEmit",
|
|
57
79
|
"typecheck": "pnpm run build:test-deps && pnpm run typecheck:raw"
|
|
58
|
-
},
|
|
59
|
-
"dependencies": {
|
|
60
|
-
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
61
|
-
"@archal/node-auth": "workspace:*",
|
|
62
|
-
"@archal/openclaw-runtime": "workspace:*",
|
|
63
|
-
"@archal/sandbox-runtime": "workspace:*",
|
|
64
|
-
"@archal/seed-codegen-runtime": "workspace:*",
|
|
65
|
-
"commander": "^14.0.3",
|
|
66
|
-
"glob": "^11.0.3",
|
|
67
|
-
"yaml": "^2.8.2",
|
|
68
|
-
"zod": "^4.3.6"
|
|
69
|
-
},
|
|
70
|
-
"devDependencies": {
|
|
71
|
-
"@archal/twin-core": "workspace:*",
|
|
72
|
-
"@archal/twin-github": "workspace:*",
|
|
73
|
-
"@archal/twin-jira": "workspace:*",
|
|
74
|
-
"@archal/twin-slack": "workspace:*",
|
|
75
|
-
"@archal/twin-stripe": "workspace:*",
|
|
76
|
-
"@types/node": "^25.3.3",
|
|
77
|
-
"tsup": "^8.5.0",
|
|
78
|
-
"tsx": "^4.19.0",
|
|
79
|
-
"typescript": "^5.9.0",
|
|
80
|
-
"vitest": "^2.1.0"
|
|
81
80
|
}
|
|
82
|
-
}
|
|
81
|
+
}
|