From 588d7133f5d37cabebfc887fcae57cb324ee13ba Mon Sep 17 00:00:00 2001 From: Hudson Rivera <258693705+hudson-rivera@users.noreply.github.com> Date: Mon, 9 Feb 2026 12:18:20 -0500 Subject: [PATCH] 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. --- skills/coding-agent/SKILL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skills/coding-agent/SKILL.md b/skills/coding-agent/SKILL.md index 744516646c..14f3ee741c 100644 --- a/skills/coding-agent/SKILL.md +++ b/skills/coding-agent/SKILL.md @@ -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.