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

Karpathy's Autoresearch Ported to Apple Neural Engine for Better Throughput per Watt
A prototype combines Andrej Karpathy's autoresearch project with reverse-engineered Apple Neural Engine performance, aiming for better throughput per watt compared to official APIs. The project is built on existing GitHub repositories and acknowledges contributions from multiple developers.

OpenClaw user creates 'feelslikeclaude' skill to improve ChatGPT agent workflow behavior
A developer switched their OpenClaw setup from Claude to ChatGPT and found the key difference was workflow behavior, not writing style. They created a clawhub skill called 'feelslikeclaude' to nudge ChatGPT toward better execution habits.

Local Tool Visualizes Claude Code Session Data
A Python script reads Claude Code session data stored locally in ~/.claude/ and generates a scroll-driven visualization with D3.js charts showing daily activity, project breakdown, tool usage, and coding rhythm heatmaps.

Manifest Adds Support for MiniMax Token Plans with M2.7 Model
Manifest, an open source routing layer for OpenClaw, now supports MiniMax token plans starting at $10/month. The new MiniMax M2.7 model is specifically trained for OpenClaw workflows and scores 62.7 on MM-ClawBench and 56.2 on SWE-Bench Pro.