openclaw-code-agent 4.0.0 → 4.1.0
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 +19 -10
- package/dist/index.js +136 -136
- package/openclaw.plugin.json +2 -1
- package/package.json +8 -6
- package/skills/code-agent-orchestration/SKILL.md +2 -0
package/openclaw.plugin.json
CHANGED
|
@@ -2,8 +2,9 @@
|
|
|
2
2
|
"id": "openclaw-code-agent",
|
|
3
3
|
"name": "OpenClaw Code Agent",
|
|
4
4
|
"description": "Multi-session coding-agent orchestration from OpenClaw chat",
|
|
5
|
-
"version": "4.
|
|
5
|
+
"version": "4.1.0",
|
|
6
6
|
"activation": {
|
|
7
|
+
"onStartup": true,
|
|
7
8
|
"onCommands": [
|
|
8
9
|
"agent",
|
|
9
10
|
"agent_kill",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-code-agent",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"packageManager": "pnpm@10.30.0",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"minGatewayVersion": "2026.4.21"
|
|
30
30
|
},
|
|
31
31
|
"build": {
|
|
32
|
-
"openclawVersion": "2026.4.
|
|
33
|
-
"pluginSdkVersion": "2026.4.
|
|
32
|
+
"openclawVersion": "2026.4.29",
|
|
33
|
+
"pluginSdkVersion": "2026.4.29"
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
36
|
"files": [
|
|
@@ -42,14 +42,14 @@
|
|
|
42
42
|
"LICENSE"
|
|
43
43
|
],
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@anthropic-ai/claude-agent-sdk": "^0.2.
|
|
45
|
+
"@anthropic-ai/claude-agent-sdk": "^0.2.119"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@sinclair/typebox": "^0.34.49",
|
|
49
49
|
"@types/node": "^25.5.2",
|
|
50
50
|
"esbuild": "^0.28.0",
|
|
51
51
|
"nanoid": "^5.1.7",
|
|
52
|
-
"openclaw": "2026.4.
|
|
52
|
+
"openclaw": "2026.4.29",
|
|
53
53
|
"tsx": "^4.21.0",
|
|
54
54
|
"typescript": "^6.0.2"
|
|
55
55
|
},
|
|
@@ -104,7 +104,9 @@
|
|
|
104
104
|
"follow-redirects@<1.16.0": "1.16.0",
|
|
105
105
|
"protobufjs@>=7 <7.5.5": "7.5.5",
|
|
106
106
|
"brace-expansion@>=4.0.0 <5.0.5": ">=5.0.5",
|
|
107
|
-
"path-to-regexp@>=8.0.0 <8.4.0": ">=8.4.0"
|
|
107
|
+
"path-to-regexp@>=8.0.0 <8.4.0": ">=8.4.0",
|
|
108
|
+
"fast-xml-parser@>=5.0.0 <5.7.0": ">=5.7.0",
|
|
109
|
+
"@anthropic-ai/sdk@<0.91.1": "0.91.1"
|
|
108
110
|
}
|
|
109
111
|
}
|
|
110
112
|
}
|
|
@@ -77,6 +77,8 @@ Treat these wake fields as authoritative state when present:
|
|
|
77
77
|
|
|
78
78
|
Use those deterministic fields instead of inferring behavior from transcript fragments.
|
|
79
79
|
|
|
80
|
+
When OpenClaw exposes managed TaskFlow state for a session, treat it as a high-level progress mirror of the plugin session. The plugin session state, `agent_sessions`, `agent_output`, and `agent_worktree_status` remain the authoritative operational surfaces for follow-up decisions.
|
|
81
|
+
|
|
80
82
|
Approval/execution meanings:
|
|
81
83
|
|
|
82
84
|
- `approved_then_implemented`: normal approved execution
|