linuxlewis/agent-skills · Archived

openclaw-notify

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.

First seen Mar 29, 2026

Installation

$ npx skills add linuxlewis/agent-skills --skill openclaw-notify

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from linuxlewis/agent-skills.

npx skills add linuxlewis/agent-skills

Browse all from linuxlewis/agent-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
License MIT
Default branch main
Open issues 0
Status Archived

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0
LicenseMIT
CompatibilityRequires openclaw CLI installed and gateway running
Declared agents clawdbot
More metadata
author
linuxlewis
version
1.0.0

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,083 B
  • docs SUMMARY.md 208 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

OpenClaw Notify

Send notifications back to the OpenClaw session that dispatched you.

The Command

openclaw gateway wake --text "Your message here" --mode now

That's it. One command.

When to Use

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

Message Format

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).

Example Workflow

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

Troubleshooting

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.