openclaw-code-agent 4.7.6 → 4.7.8
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/chunks/agent-pr.js +1 -0
- package/dist/chunks/chunk.js +57 -0
- package/dist/chunks/npm-release-client.js +1 -0
- package/dist/index.js +193 -249
- package/npm-shrinkwrap.json +1401 -0
- package/openclaw.plugin.json +1 -1
- package/package.json +23 -17
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-code-agent",
|
|
3
|
-
"version": "4.7.
|
|
3
|
+
"version": "4.7.8",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"packageManager": "pnpm@11.
|
|
5
|
+
"packageManager": "pnpm@11.15.1",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"audit:prod": "pnpm audit --prod",
|
|
9
|
-
"build": "esbuild index.ts --bundle --platform=node --target=node22 --format=esm --
|
|
10
|
-
"
|
|
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
|
+
"generate:npm-shrinkwrap": "node scripts/generate-npm-shrinkwrap.mjs",
|
|
11
|
+
"check-static-guardrails": "node scripts/check-static-guardrails.mjs && node scripts/check-release-age-exceptions.mjs && node scripts/check-npm-shrinkwrap.mjs",
|
|
11
12
|
"check-plugin-security": "node scripts/check-plugin-security.mjs",
|
|
12
13
|
"test": "node scripts/run-tests.mjs",
|
|
13
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",
|
|
@@ -24,6 +25,7 @@
|
|
|
24
25
|
"smoke:opencode-live": "OPENCLAW_RUN_LIVE_OPENCODE_SMOKE=1 node scripts/run-tests.mjs tests/live-opencode-server-smoke.test.ts",
|
|
25
26
|
"typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
|
|
26
27
|
"validate:release-metadata": "node scripts/validate-release-metadata.mjs",
|
|
28
|
+
"verify:npm-consumer": "node scripts/check-npm-shrinkwrap-release-age.mjs && node scripts/verify-npm-consumer-install.mjs",
|
|
27
29
|
"verify": "pnpm check-static-guardrails && pnpm typecheck && pnpm build && pnpm test"
|
|
28
30
|
},
|
|
29
31
|
"openclaw": {
|
|
@@ -33,32 +35,41 @@
|
|
|
33
35
|
"install": {
|
|
34
36
|
"npmSpec": "openclaw-code-agent",
|
|
35
37
|
"defaultChoice": "npm",
|
|
36
|
-
"minHostVersion": ">=2026.7.1"
|
|
38
|
+
"minHostVersion": ">=2026.7.1-2"
|
|
37
39
|
},
|
|
38
40
|
"compat": {
|
|
39
|
-
"pluginApi": ">=2026.7.1",
|
|
40
|
-
"minGatewayVersion": "2026.7.1"
|
|
41
|
+
"pluginApi": ">=2026.7.1-2",
|
|
42
|
+
"minGatewayVersion": "2026.7.1-2"
|
|
41
43
|
},
|
|
42
44
|
"build": {
|
|
43
|
-
"openclawVersion": "2026.7.1",
|
|
44
|
-
"pluginSdkVersion": "2026.7.1"
|
|
45
|
+
"openclawVersion": "2026.7.1-2",
|
|
46
|
+
"pluginSdkVersion": "2026.7.1-2"
|
|
45
47
|
}
|
|
46
48
|
},
|
|
47
49
|
"files": [
|
|
48
50
|
"dist/",
|
|
49
51
|
"skills/",
|
|
50
52
|
"openclaw.plugin.json",
|
|
53
|
+
"npm-shrinkwrap.json",
|
|
51
54
|
"README.md",
|
|
52
55
|
"LICENSE"
|
|
53
56
|
],
|
|
54
57
|
"dependencies": {
|
|
55
|
-
"@anthropic-ai/claude-agent-sdk": "
|
|
58
|
+
"@anthropic-ai/claude-agent-sdk": "0.3.220",
|
|
59
|
+
"@anthropic-ai/sdk": "0.109.1",
|
|
60
|
+
"@hono/node-server": "2.0.10",
|
|
61
|
+
"@modelcontextprotocol/sdk": "1.30.0",
|
|
62
|
+
"express-rate-limit": "8.6.1",
|
|
63
|
+
"fast-uri": "3.1.5",
|
|
64
|
+
"hono": "4.12.34",
|
|
65
|
+
"ip-address": "10.3.1",
|
|
66
|
+
"zod": "4.4.3"
|
|
56
67
|
},
|
|
57
68
|
"devDependencies": {
|
|
58
69
|
"@types/node": "^26.0.1",
|
|
59
70
|
"esbuild": "^0.28.1",
|
|
60
71
|
"nanoid": "^6.0.0",
|
|
61
|
-
"openclaw": "2026.7.1",
|
|
72
|
+
"openclaw": "2026.7.1-2",
|
|
62
73
|
"tsx": "^4.21.0",
|
|
63
74
|
"typescript": "^7.0.2"
|
|
64
75
|
},
|
|
@@ -95,11 +106,6 @@
|
|
|
95
106
|
},
|
|
96
107
|
"description": "An OpenClaw plugin that orchestrates coding agent sessions as managed background processes. Launch, monitor, and control coding agents (Claude Code, Codex, experimental OpenCode, and more) directly from your AI gateway.",
|
|
97
108
|
"peerDependencies": {
|
|
98
|
-
"openclaw": ">=2026.7.1"
|
|
99
|
-
},
|
|
100
|
-
"overrides": {
|
|
101
|
-
"basic-ftp": "5.3.1",
|
|
102
|
-
"fast-xml-builder@<1.1.7": "1.1.7",
|
|
103
|
-
"ip-address@<10.1.1": "10.1.1"
|
|
109
|
+
"openclaw": ">=2026.7.1-2"
|
|
104
110
|
}
|
|
105
111
|
}
|