openclaw-code-agent 4.6.0 → 4.7.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 CHANGED
@@ -81,17 +81,18 @@ openclaw gateway restart
81
81
  openclaw plugins inspect openclaw-code-agent --runtime --json
82
82
  ```
83
83
 
84
- If OpenClaw blocks installation with a dangerous-code scanner finding for
85
- `child_process`, that is expected for this trusted plugin because it launches
86
- local coding harnesses and git tooling. Review the rationale in
87
- [docs/SECURITY.md](docs/SECURITY.md), then rerun the trusted package/source with
88
- the unsafe-install override:
84
+ OpenClaw 2026.7.1 no longer performs built-in dangerous-code blocking during
85
+ plugin installation. Review the subprocess rationale in
86
+ [docs/SECURITY.md](docs/SECURITY.md) before installing this plugin because it
87
+ launches local coding harnesses and git tooling. Operators who require a local
88
+ allow/block decision should configure OpenClaw's `security.installPolicy`.
89
+ To replace an existing reviewed installation and pin the resolved version, use:
89
90
 
90
91
  ```bash
91
- openclaw plugins install openclaw-code-agent --force --pin --dangerously-force-unsafe-install
92
+ openclaw plugins install openclaw-code-agent --force --pin
92
93
  ```
93
94
 
94
- Use that override only for a package/source you already trust. When validating a
95
+ Use `--force` only for a package/source you already trust. When validating a
95
96
  specific reviewed release, add its version after the package name.
96
97
 
97
98
  Add the smallest useful config under `plugins.entries["openclaw-code-agent"]` in `~/.openclaw/openclaw.json`:
@@ -127,7 +128,7 @@ Because worktree isolation defaults to `delegate`, `defaultWorkdir` should norma
127
128
 
128
129
  Chat-launched sessions route updates back to their originating chat thread. For agent-launched tool sessions without an origin route, configure `fallbackChannel` or `agentChannels` in the reference guide.
129
130
 
130
- The current package targets and validates against the OpenClaw SDK package `openclaw@2026.6.11`, while keeping the plugin peer floor at `>=2026.4.21`. No host upgrade or host config change is required for this plugin compatibility update. OpenClaw `2026.6.11` changes the SDK API baseline and adds the `openclaw/plugin-sdk/agent-harness-tool-runtime` export, but `openclaw-code-agent` does not need new SDK imports for the OpenClaw changes: the manifest already declares `contracts.tools`, the plugin still imports only `openclaw/plugin-sdk/plugin-entry`, and its own session store, wake routing, callbacks, worktree flows, and harness model restrictions remain plugin-owned. Current callback behavior around native callback data, routed follow-ups, retryable stale plan approval buttons, and serialized plan decisions remains plugin-owned.
131
+ The current package targets and validates against the OpenClaw SDK package `openclaw@2026.7.1`, while keeping the plugin peer floor at `>=2026.4.21`. No host upgrade or host config change is required for this plugin compatibility update. OpenClaw `2026.7.1` changes Codex app-server, Telegram delivery, cron/session delivery, tool visibility, approval, and plugin update behavior, but `openclaw-code-agent` does not need new SDK imports for those changes: the manifest already declares `contracts.tools`, the plugin still imports only `openclaw/plugin-sdk/plugin-entry`, and its own session store, wake routing, callbacks, worktree flows, and harness model restrictions remain plugin-owned. Current callback behavior around native callback data, routed follow-ups, retryable stale plan approval buttons, and serialized plan decisions remains plugin-owned.
131
132
 
132
133
  If you use Codex, make sure the local `codex` command or `OPENCLAW_CODEX_APP_SERVER_COMMAND` override is available and authenticated. Codex-specific defaults live under `harnesses.codex`: `reasoningEffort` is sent as `reasoningEffort`, and `fastMode: true` sends `service_tier: "fast"` on Codex App Server thread, resume, and turn payloads. The Codex harness starts the app server with stdio listener args by default, only sends UUID-shaped backend thread IDs to `thread/resume`, and reports startup timeouts with redacted recent stderr. When Codex auth is inconsistent, this is the recommended `~/.codex/config.toml` setting:
133
134
 
@@ -224,12 +225,12 @@ Most users interact in chat. The tool surface is for OpenClaw agents and advance
224
225
  | `agent_pr` | Create or update a GitHub PR |
225
226
  | `agent_worktree_status` | Show worktree lifecycle state and cleanup safety |
226
227
  | `agent_worktree_cleanup` | Clean safe worktrees or dismiss one pending decision |
227
- | `goal_launch` | Start an explicit verifier or Ralph-style goal loop |
228
- | `goal_status` | Show one goal task or list all goal tasks |
229
- | `goal_edit` | Change the goal text for an active goal task |
230
- | `goal_stop` | Stop a running goal task |
228
+ | `agent_goal_launch` | Start an explicit verifier or Ralph-style goal loop |
229
+ | `agent_goal_status` | Show one goal task or list all goal tasks |
230
+ | `agent_goal_edit` | Change the goal text for an active goal task |
231
+ | `agent_goal_stop` | Stop a running goal task |
231
232
 
232
- Chat commands mirror the common workflows when you want explicit commands instead of natural-language chat, but most human use should start with plain requests like the examples above. Available commands are `/agent`, `/agent_sessions`, `/agent_output`, `/agent_respond`, `/agent_kill`, `/agent_stats`, `/goal`, `/goal_status`, `/goal_edit`, and `/goal_stop`.
233
+ Chat commands mirror the common workflows when you want explicit commands instead of natural-language chat, but most human use should start with plain requests like the examples above. Available commands are `/agent`, `/agent_sessions`, `/agent_output`, `/agent_respond`, `/agent_kill`, `/agent_stats`, `/agent_policy`, `/agent_goal`, `/agent_goal_status`, `/agent_goal_edit`, and `/agent_goal_stop`.
233
234
 
234
235
  ## Docs
235
236