docs: fix incorrect CLI command in 14 extension READMEs#112057
Conversation
|
Codex review: needs real behavior proof before merge. Reviewed July 21, 2026, 12:01 AM ET / 04:01 UTC. Summary PR surface: Docs 0. Total 0 across 14 files. Reproducibility: not applicable. as a runtime bug reproduction: the mismatch is directly verifiable by comparing the README command with the documented plugin CLI surface. Review metrics: none identified. Merge readiness Overall follows the weaker of proof and patch quality, so missing proof can cap an otherwise strong patch. Rank-up moves:
Next step before merge
Security Review detailsBest possible solution: Merge the narrowly scoped README correction so every affected extension advertises the supported Do we have a high-confidence way to reproduce the issue? Not applicable as a runtime bug reproduction: the mismatch is directly verifiable by comparing the README command with the documented plugin CLI surface. Is this the best way to solve the issue? Yes. Replacing only the incorrect command with the documented plural installer is the narrowest maintainable correction and avoids introducing a legacy CLI alias. AGENTS.md: found and applied where relevant. Codex review notes: model internal, reasoning high; reviewed against bb45edac3e57. Label changesLabel changes:
Label justifications:
Evidence reviewedPR surface: Docs 0. Total 0 across 14 files. View PR surface stats
What I checked:
Likely related people:
What the crustacean ranks mean
Shiny media proof means a screenshot, video, or linked artifact directly shows the changed behavior. Runtime, network, CSP, and security claims still need visible diagnostics. How this review workflow works
|
|
@clawsweeper automerge |
|
🦞🧹
Draft PRs stay fix-only until GitHub marks them ready for review. Pause with Automerge progress:
Re-review progress:
|
Replace non-existent 'openclaw plugin add' with the correct 'openclaw plugins install' command in 14 extension README files. The CLI only registers 'openclaw plugins install' (src/cli/plugins-cli.ts), and the previous command would fail for users following the docs.
4590ead to
a1d61f4
Compare
|
ClawSweeper status: review started. I am starting a fresh review of this pull request: docs: fix incorrect CLI command in 14 extension READMEs This is item 1/1 in the current shard. Shard 0/1. This placeholder means the worker is alive and reading the current context. I will edit this same comment with the actual review when the claws are done clicking. Crustacean status: shell secured, claws on keyboard, evidence pebbles being sorted. |
|
Merged via squash.
|
What Problem This Solves
14 extension README files reference the command
openclaw plugin add, which does not exist in the CLI. Users following these docs to install extensions would get a command-not-found error.The correct command is
openclaw plugins install, as registered insrc/cli/plugins-cli.tsand documented in other extension READMEs (e.g., Signal, Brave).Why This Change Was Made
The incorrect command prevents users from successfully installing these extensions by following the README instructions.
User Impact
Users can now copy-paste the install command from any extension README and have it work correctly.
Changes
Replaced
openclaw plugin addwithopenclaw plugins installin:Evidence