openclaw-code-agent 4.4.0 → 4.4.2
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/dist/index.js +161 -163
- package/openclaw.plugin.json +1 -1
- package/package.json +3 -2
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-code-agent",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"packageManager": "pnpm@10.30.0",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"audit:prod": "pnpm audit --prod",
|
|
9
9
|
"build": "esbuild index.ts --bundle --platform=node --target=node22 --format=esm --outfile=dist/index.js --minify --charset=utf8 --pure:console.log --pure:console.warn --pure:console.info --pure:console.debug --external:@anthropic-ai/claude-agent-sdk --external:openclaw/plugin-sdk/plugin-entry",
|
|
10
|
+
"check-static-guardrails": "node scripts/check-static-guardrails.mjs",
|
|
10
11
|
"check-plugin-security": "node scripts/check-plugin-security.mjs",
|
|
11
12
|
"test": "node scripts/run-tests.mjs",
|
|
12
13
|
"test:serial": "node scripts/run-tests.mjs",
|
|
@@ -19,7 +20,7 @@
|
|
|
19
20
|
"smoke:opencode-live": "OPENCLAW_RUN_LIVE_OPENCODE_SMOKE=1 node scripts/run-tests.mjs tests/live-opencode-server-smoke.test.ts",
|
|
20
21
|
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
|
|
21
22
|
"validate:release-metadata": "node scripts/validate-release-metadata.mjs",
|
|
22
|
-
"verify": "pnpm typecheck && pnpm build && pnpm test"
|
|
23
|
+
"verify": "pnpm check-static-guardrails && pnpm typecheck && pnpm build && pnpm test"
|
|
23
24
|
},
|
|
24
25
|
"openclaw": {
|
|
25
26
|
"extensions": [
|