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

OpenClaw PARA skill organizes AI assistant files automatically
A developer created an OpenClaw skill that enforces the PARA method (Projects, Areas, Resources, Archives) for file organization, automatically sorting files into four structured folders instead of dumping everything in the root directory.

nah: A context-aware permission guard for Claude Code
nah is a PreToolUse hook that intercepts every tool call in Claude Code, classifying commands by action type like filesystem_read or git_history_rewrite and applying policies based on context. It runs a deterministic classifier in milliseconds with optional LLM escalation for ambiguous cases.

Brain-MCP Developer Documents Tools for Claude AI Instead of Humans
A developer maintaining the Brain-MCP server added a 'For AI Assistants' section to documentation with behavioral instructions, resulting in Claude using tools more intelligently and proactively injecting context when topics change.

molequla: Continual Learning AI Organism Built from Scratch with ClaudeCode
molequla is a continual learning AI organism implemented from scratch in Go, C, JavaScript, and Rust with a Python orchestrator. Each element is a full transformer implementation with vector autograd, trained on raw text, that grows and develops a personality over time.