skills/openclaw-notify/SKILL.md
Notify OpenClaw gateway when background tasks complete. Use when you were dispatched by OpenClaw/TARS for background work and need to ping the user that you're done, failed, or blocked.
npx skillsauth add linuxlewis/agent-skills openclaw-notifyInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Send notifications back to the OpenClaw session that dispatched you.
openclaw gateway wake --text "Your message here" --mode now
That's it. One command.
Call this once at the very end of your task:
# ✅ Task completed
openclaw gateway wake --text "Done: Created PR #42 with OAuth implementation" --mode now
# ✅ Task failed
openclaw gateway wake --text "Failed: Could not push branch - permission denied" --mode now
# ✅ Blocked on something
openclaw gateway wake --text "Blocked: Need API credentials to continue" --mode now
Don't send multiple notifications:
# ❌ Unnecessary progress updates
openclaw gateway wake --text "Starting work..." --mode now
openclaw gateway wake --text "Halfway done..." --mode now
Keep it short and useful:
Done: <what you accomplished>
Failed: <what went wrong>
Blocked: <what you need>
Include links when relevant (PR URLs, file paths, error logs).
When dispatched with "implement feature X and make a PR":
# 1. Do your work
git checkout -b feature/x
# ... implement feature ...
git add -A && git commit -m "feat: implement X"
git push -u origin feature/x
gh pr create --title "feat: implement X" --body "..."
# 2. Notify when done (LAST step)
openclaw gateway wake --text "Done: PR #15 created - https://github.com/org/repo/pull/15" --mode now
If the command fails:
# Check if openclaw is available
which openclaw
# Check gateway status
openclaw gateway status
If gateway isn't running, the notification won't deliver — but that's okay, the user will check on you eventually.
development
Run Ralph Wiggum autonomous coding loops. Use when user asks to run ralph, start autonomous coding, execute a PRD, implement features from a task list, or wants Claude Code to work through user stories iteratively.
development
Review and respond to GitHub PR comments. Use when analyzing PR feedback, determining which comments to address, classifying review comments by priority, or implementing fixes for code review feedback.
development
Apply linuxlewis's code review style to pull requests, local diffs, or proposed code changes. Use when asked to review code the way linuxlewis would, emulate Sam Bolgert's review strategy, predict likely PR feedback, or explain linuxlewis's review profile.
tools
Browser automation using the agent-browser CLI. Use when user asks to browse websites, open webpages, interact with page elements, take screenshots, fill forms, click buttons, scrape content, or automate browser tasks.