OpenClaw Browser Recover
Analysis
This skill is a coherent browser troubleshooting helper that runs local diagnostics and may restart the OpenClaw gateway once; users should notice the local command and browser-profile access.
Findings (3)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
openclaw gateway status ss -lntp | egrep '(:18789|:18791|:9222)' || true ... openclaw gateway restart
The skill directs the agent/user to run local diagnostics and perform a gateway restart. This is disclosed and purpose-aligned for browser recovery, and the instructions limit it to one restart.
#!/usr/bin/env bash ... openclaw gateway status || true ... ss -lntp | egrep '(:18789|:18791|:9222)'
The helper script depends on local shell utilities and the openclaw CLI, while the registry requirements list no required binaries. This is a metadata completeness issue, not hidden install behavior.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
`profile="user"` 依赖本机 Chrome 的 **CDP 9222** ... `browser.tabs profile="user" limit=5`
The skill checks the live user Chrome profile and requests a small tab listing via CDP. This is coherent for browser-tool recovery, but it touches the user's active browser context.
