fix(docs): correct wake command in coding-agent skill (#10516)

The skill documented `openclaw gateway wake --text ... --mode now` which
is not a valid subcommand. The correct command is
`openclaw system event --text ... --mode now`.

Fixes #10515.
This commit is contained in:
Hudson Rivera
2026-02-09 12:18:20 -05:00
committed by GitHub
parent 582732391a
commit 588d7133f5

View File

@@ -260,7 +260,7 @@ For long-running background tasks, append a wake trigger to your prompt so OpenC
... your task here.
When completely finished, run this command to notify me:
openclaw gateway wake --text "Done: [brief summary of what was built]" --mode now
openclaw system event --text "Done: [brief summary of what was built]" --mode now
```
**Example:**
@@ -268,7 +268,7 @@ openclaw gateway wake --text "Done: [brief summary of what was built]" --mode no
```bash
bash pty:true workdir:~/project background:true command:"codex --yolo exec 'Build a REST API for todos.
When completely finished, run: openclaw gateway wake --text \"Done: Built todos REST API with CRUD endpoints\" --mode now'"
When completely finished, run: openclaw system event --text \"Done: Built todos REST API with CRUD endpoints\" --mode now'"
```
This triggers an immediate wake event — Skippy gets pinged in seconds, not 10 minutes.