openclaw-code-agent 4.7.9 → 4.7.11
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 +1 -1
- package/dist/index.js +154 -161
- package/npm-shrinkwrap.json +6 -6
- package/openclaw.plugin.json +1 -1
- package/package.json +8 -8
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-code-agent",
|
|
3
|
-
"version": "4.7.
|
|
3
|
+
"version": "4.7.11",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "openclaw-code-agent",
|
|
9
|
-
"version": "4.7.
|
|
9
|
+
"version": "4.7.11",
|
|
10
10
|
"license": "MIT",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@anthropic-ai/claude-agent-sdk": "0.3.251",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"express-rate-limit": "8.7.0",
|
|
17
17
|
"fast-uri": "3.1.5",
|
|
18
18
|
"hono": "4.12.34",
|
|
19
|
-
"ip-address": "10.
|
|
19
|
+
"ip-address": "10.7.0",
|
|
20
20
|
"zod": "4.5.4"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
@@ -827,9 +827,9 @@
|
|
|
827
827
|
"license": "ISC"
|
|
828
828
|
},
|
|
829
829
|
"node_modules/ip-address": {
|
|
830
|
-
"version": "10.
|
|
831
|
-
"resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.
|
|
832
|
-
"integrity": "sha512-
|
|
830
|
+
"version": "10.7.0",
|
|
831
|
+
"resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.7.0.tgz",
|
|
832
|
+
"integrity": "sha512-BGFsyJd5mpXp3rK6jIdADLNgpJUK1jnjzvYF8lK+VyDab9JAmqN0YOKDdP17HlgKb2+ehPgDc8EtnRLbGCAMhA==",
|
|
833
833
|
"license": "MIT",
|
|
834
834
|
"engines": {
|
|
835
835
|
"node": ">= 12"
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-code-agent",
|
|
3
|
-
"version": "4.7.
|
|
3
|
+
"version": "4.7.11",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"packageManager": "pnpm@11.15.1",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"audit:prod": "pnpm audit --prod",
|
|
9
9
|
"build": "esbuild index.ts --bundle --splitting --platform=node --target=node22 --format=esm --outdir=dist --entry-names=index --chunk-names=chunks/[name] --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
10
|
"generate:npm-shrinkwrap": "node scripts/generate-npm-shrinkwrap.mjs",
|
|
11
|
-
"check-static-guardrails": "node scripts/check-static-guardrails.mjs && node scripts/check-
|
|
11
|
+
"check-static-guardrails": "node scripts/check-static-guardrails.mjs && node scripts/check-npm-shrinkwrap.mjs",
|
|
12
12
|
"check-plugin-security": "node scripts/check-plugin-security.mjs",
|
|
13
13
|
"test": "node scripts/run-tests.mjs",
|
|
14
14
|
"test:integ:crabbox": "node scripts/run-tests.mjs tests/oca-codex-crabbox-integ.test.ts tests/oca-plugin-workflows-integ.test.ts tests/oca-codex-telegram-proof.test.ts tests/oca-codex-proof-app-server.test.ts tests/oca-codex-proof-workflow.test.ts",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"smoke:opencode-live": "OPENCLAW_RUN_LIVE_OPENCODE_SMOKE=1 node scripts/run-tests.mjs tests/live-opencode-server-smoke.test.ts",
|
|
26
26
|
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
|
|
27
27
|
"validate:release-metadata": "node scripts/validate-release-metadata.mjs",
|
|
28
|
-
"verify:npm-consumer": "node scripts/
|
|
28
|
+
"verify:npm-consumer": "node scripts/verify-npm-consumer-install.mjs",
|
|
29
29
|
"verify": "pnpm check-static-guardrails && pnpm typecheck && pnpm build && pnpm test"
|
|
30
30
|
},
|
|
31
31
|
"openclaw": {
|
|
@@ -35,15 +35,15 @@
|
|
|
35
35
|
"install": {
|
|
36
36
|
"npmSpec": "openclaw-code-agent",
|
|
37
37
|
"defaultChoice": "npm",
|
|
38
|
-
"minHostVersion": ">=2026.8.
|
|
38
|
+
"minHostVersion": ">=2026.8.2"
|
|
39
39
|
},
|
|
40
40
|
"compat": {
|
|
41
41
|
"pluginApi": ">=2026.8.1",
|
|
42
42
|
"minGatewayVersion": "2026.8.1"
|
|
43
43
|
},
|
|
44
44
|
"build": {
|
|
45
|
-
"openclawVersion": "2026.8.
|
|
46
|
-
"pluginSdkVersion": "2026.8.
|
|
45
|
+
"openclawVersion": "2026.8.2",
|
|
46
|
+
"pluginSdkVersion": "2026.8.2"
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
49
|
"files": [
|
|
@@ -62,14 +62,14 @@
|
|
|
62
62
|
"express-rate-limit": "8.7.0",
|
|
63
63
|
"fast-uri": "3.1.5",
|
|
64
64
|
"hono": "4.12.34",
|
|
65
|
-
"ip-address": "10.
|
|
65
|
+
"ip-address": "10.7.0",
|
|
66
66
|
"zod": "4.5.4"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@types/node": "^26.0.1",
|
|
70
70
|
"esbuild": "^0.28.1",
|
|
71
71
|
"nanoid": "^6.0.0",
|
|
72
|
-
"openclaw": "2026.8.
|
|
72
|
+
"openclaw": "2026.8.2",
|
|
73
73
|
"tsx": "^4.21.0",
|
|
74
74
|
"typescript": "^7.0.2"
|
|
75
75
|
},
|