Agent Wake Skill for OpenClaw: Notify Discord When Tasks Complete

A developer has published a free skill called "agent-wake" that solves a common OpenClaw workflow issue: when Claude Code runs background tasks, the agent doesn't automatically respond to completions.
What It Does
The skill consists of a Python script named agent-wake.py that Claude Code calls at the end of every task. When executed, it performs two actions:
- Sends a mention ping in Discord
- Fires a wake event into your agent's session via the gateway HTTP API
This causes the agent to wake up, read the task completion, and post a summary in the appropriate channel without requiring manual prompting.
Configuration Requirements
The developer encountered two specific configuration issues that others should be aware of:
- The cron tool is blocked by default on the gateway HTTP API. You must add it to
gateway.tools.allowin youropenclaw.jsonconfiguration file, otherwise the wake call fails silently. - You need to pass
sessionKeyin the request body. Without this parameter, the agent wakes up in your default channel instead of the channel where you're actually working.
The developer notes that while the concept might seem straightforward, implementation took several days to get working correctly. The skill is available for free at clawhub.com/skills/agent-wake.
📖 Read the full source: r/openclaw
👀 See Also

Using OpenAI Codex IDE with Local Ollama Models in VSCodium
OpenAI Codex IDE can be configured to work with local Ollama models in VSCodium using specific configurations in the config.toml file.

Why Codex Still Beats Claude Code for Complex Python Monoliths
A senior developer compares Codex vs Claude Code on a production Python monolith with mixed architectural layers. Codex wins for back-end work due to better planning, code reuse, and harness-engineering adherence.

Claude Code protocol file reduces repetitive questioning
A developer created a single .md file for ~/.claude/rules/ that infers task type and risk from the first message, eliminating Claude Code's typical three-question sequence before starting work.

Automating Claude Desktop Release Notes from Minified Electron Apps
A developer created an automated pipeline using Claude Sonnet and Opus 4.6 to generate release notes for Claude Desktop on Linux, addressing the lack of official release notes from Anthropic. The system extracts, normalizes, and analyzes minified Electron app code as part of a CI/CD workflow.