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

Claudetop: Real-Time Cost Monitoring for Claude Code Sessions
Claudetop is an htop-like tool that shows real-time spending, cache efficiency, and model comparisons for Claude Code sessions. It provides slash commands like /claudetop:stats and smart alerts for cost milestones and efficiency issues.

Token Reducer: A Claude Code Plugin for Intelligent Context Compression
Token Reducer is a Claude Code plugin that processes repository context locally to reduce token usage by 90-98% using AST-based chunking, hybrid retrieval, and TextRank compression. It's MIT licensed and available via the plugin marketplace.

Lucas Gerads demonstrates MCP servers for oscilloscope and SPICE simulator integration with Claude Code
Lucas Gerads built MCP servers for his LeCroy oscilloscope and SPICE simulator, enabling Claude Code to validate SPICE circuits and models, handle embedded programming, and automate data analysis tasks like time axis normalization and data alignment.
Agentalmanac: A Catalog of 23 MCP Servers with Paste-Ready JSON Configs
Reddit user catalogues 23 MCP servers with paste-ready configs for Claude Desktop, Cursor, and Continue. Routes around archived servers to maintained alternatives. Hosted demo runs on Cloudflare Workers.