openclaw-code-agent 4.1.2 → 4.2.1
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 +98 -160
- package/dist/index.js +142 -146
- package/openclaw.plugin.json +4 -4
- package/package.json +4 -5
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
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.1
|
|
5
|
+
"version": "4.2.1",
|
|
6
6
|
"contracts": {
|
|
7
7
|
"tools": [
|
|
8
8
|
"agent_launch",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"agent_output",
|
|
12
12
|
"agent_respond",
|
|
13
13
|
"agent_request_plan_approval",
|
|
14
|
-
"
|
|
14
|
+
"agent_send_plan_offer",
|
|
15
15
|
"agent_stats",
|
|
16
16
|
"agent_merge",
|
|
17
17
|
"agent_pr",
|
|
@@ -180,7 +180,7 @@
|
|
|
180
180
|
"type": "string",
|
|
181
181
|
"default": "delegate",
|
|
182
182
|
"enum": ["off", "manual", "ask", "delegate", "auto-merge", "auto-pr"],
|
|
183
|
-
"description": "Default worktree strategy for all new sessions when agent_launch omits worktree_strategy. 'delegate' (default) creates an isolated worktree and wakes the orchestrator to decide follow-through autonomously. 'off' = no worktree. 'manual' = create worktree, no automatic action. 'ask' = push branch and notify the user with inline buttons
|
|
183
|
+
"description": "Default worktree strategy for all new sessions when agent_launch omits worktree_strategy. 'delegate' (default) creates an isolated worktree and wakes the orchestrator to decide follow-through autonomously. 'off' = no worktree. 'manual' = create worktree, no automatic action. 'ask' = push branch and notify the user with state-aware inline buttons such as Merge, Open PR, View PR, Sync PR, Later, and Discard. 'auto-merge' = auto-merge to base branch on completion. 'auto-pr' = auto-create or update a GitHub PR on completion."
|
|
184
184
|
},
|
|
185
185
|
"worktreeDir": {
|
|
186
186
|
"type": "string",
|
|
@@ -244,7 +244,7 @@
|
|
|
244
244
|
},
|
|
245
245
|
"defaultWorktreeStrategy": {
|
|
246
246
|
"label": "Default worktree strategy",
|
|
247
|
-
"help": "Applies to all sessions that don't specify worktree_strategy explicitly. 'delegate' (default) creates a worktree and wakes the orchestrator to decide follow-through. 'off' disables worktrees globally. 'ask' sends inline Merge
|
|
247
|
+
"help": "Applies to all sessions that don't specify worktree_strategy explicitly. 'delegate' (default) creates a worktree and wakes the orchestrator to decide follow-through. 'off' disables worktrees globally. 'ask' sends state-aware inline worktree buttons such as Merge, Open PR, View PR, Sync PR, Later, and Discard. 'auto-merge' and 'auto-pr' are fully automated.",
|
|
248
248
|
"advanced": true
|
|
249
249
|
}
|
|
250
250
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-code-agent",
|
|
3
|
-
"version": "4.1
|
|
3
|
+
"version": "4.2.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"packageManager": "pnpm@10.30.0",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -29,14 +29,13 @@
|
|
|
29
29
|
"minGatewayVersion": "2026.4.21"
|
|
30
30
|
},
|
|
31
31
|
"build": {
|
|
32
|
-
"openclawVersion": "2026.5.
|
|
33
|
-
"pluginSdkVersion": "2026.5.
|
|
32
|
+
"openclawVersion": "2026.5.6",
|
|
33
|
+
"pluginSdkVersion": "2026.5.6"
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
36
|
"files": [
|
|
37
37
|
"dist/",
|
|
38
38
|
"skills/",
|
|
39
|
-
"workflows/",
|
|
40
39
|
"openclaw.plugin.json",
|
|
41
40
|
"README.md",
|
|
42
41
|
"LICENSE"
|
|
@@ -49,7 +48,7 @@
|
|
|
49
48
|
"@types/node": "^25.5.2",
|
|
50
49
|
"esbuild": "^0.28.0",
|
|
51
50
|
"nanoid": "^5.1.7",
|
|
52
|
-
"openclaw": "2026.5.
|
|
51
|
+
"openclaw": "2026.5.6",
|
|
53
52
|
"tsx": "^4.21.0",
|
|
54
53
|
"typescript": "^6.0.2"
|
|
55
54
|
},
|