OpenClaw Version Monitor
by @tjefferson
Check OpenClaw release notes from GitHub, show highlights and categorized changes translated to the user's language.
clawhub install openclaw-release-monitorπ About This Skill
name: openclaw-version-monitor description: Check OpenClaw release notes from GitHub, show highlights and categorized changes translated to the user's language. user-invocable: true metadata: {"openclaw": {"emoji": "π¦", "primaryEnv": "GITHUB_TOKEN"}}
OpenClaw Version Monitor
Fetch and present OpenClaw release notes in the user's language.
When to use
Use this skill immediately when the user mentions any of:
Do not use for: OpenClaw installation help, configuration questions, or unrelated GitHub repos.
Data source
All data comes from the GitHub REST API for openclaw/openclaw:
# Latest stable release
curl -s https://api.github.com/repos/openclaw/openclaw/releases/latestLatest release including pre-releases
curl -s "https://api.github.com/repos/openclaw/openclaw/releases?per_page=1"Recent N releases
curl -s "https://api.github.com/repos/openclaw/openclaw/releases?per_page=10"Specific version (always add v prefix)
curl -s https://api.github.com/repos/openclaw/openclaw/releases/tags/v2026.3.31
If GITHUB_TOKEN is set, add -H "Authorization: token $GITHUB_TOKEN" to raise the rate limit from 60 to 5000 requests/hour.
Extract these fields from the JSON response: tag_name, published_at, prerelease, author.login, html_url, body.
Release notes structure
The body field uses this markdown structure:
### Breaking
Module/area: description... Changes
Module/area: description... Fixes
Module/area: description...
Categorize entries by ### heading:
Output rules
Language
Translation guidelines
(#12345) issue numbers and Thanks @username creditsDefault output (compact mode)
Show only highlights + stats + interactive prompt. Do NOT dump the full list unless asked.
# OpenClaw v2026.3.31Released: 2026-03-31 20:54 UTC
Author: steipete
Link: https://github.com/openclaw/openclaw/releases/tag/v2026.3.31 β Highlights
1. Background tasks overhaul β Unified into a shared control plane managing ACP, subagents, cron, and background CLI via SQLite ledger
2. Plugin security scan now fails closed β Dangerous-code scan failures block installs by default; requires explicit --dangerously-force-unsafe-install
3. Remote MCP HTTP/SSE support β mcp.servers now accepts remote HTTP/SSE servers with auth headers and secure credential editing
4. QQ Bot channel plugin β New bundled channel plugin with multi-account setup, slash commands, reminders, and media support
5. Gateway auth hardening β trusted-proxy rejects mixed shared-token configs; node commands/events stay disabled until pairing is approved95 changes total (π¨ 6 breaking Β· β¨ 29 new Β· π 60 fixes)
π‘ You can:
Tell me what you care about (e.g. "MCP changes", "security fixes") and I'll filter
Say "full list" to see everything
Say "breaking changes" to see only upgrade-critical items
(Translate the above into the user's language as needed.)
Filtered output (when user asks about a topic)
Search all entries for the user's keyword, then show only matching items grouped by category:
## π MCP-related changes (3 items)New:
Agents/MCP: Bundle MCP tools with provider-safe names, support streamable-http transport and per-server timeouts
MCP: Add remote HTTP/SSE server support for mcp.servers with auth headers Fixes:
Agents/OpenAI Responses: Normalize raw bundled MCP tool schemas on WebSocket/Responses path
Full list (when user asks for it)
Show all entries under each category header with counts:
## π¨ Breaking changes (6)
... β¨ New features & improvements (29)
... π Bug fixes (60)
...
Version list
# OpenClaw recent releases| Version | Date | Type | Changes |
|---------|------|------|---------|
| v2026.3.31 | 2026-03-31 | Stable | 95 |
| v2026.3.28 | 2026-03-29 | Stable | 120 |
| v2026.3.24 | 2026-03-25 | Stable | 33 |
Version comparison
Show each version's highlights side by side, then a stats table:
## π Comparison| Category | v2026.3.28 | v2026.3.31 |
|----------|-----------|-----------|
| Breaking | 2 | 6 |
| New/Improved | 21 | 29 |
| Fixes | 97 | 60 |
Highlight selection
Pick the 5 most important changes for the highlights section. Priority order: 1. Breaking changes (users must know before upgrading) 2. Architecture-level new features (e.g. task system overhaul) 3. User-facing new features (e.g. new channel plugin, new CLI command) 4. Critical security fixes
Error handling
| Situation | Action |
|-----------|--------|
| HTTP 403 | API rate limited β suggest setting GITHUB_TOKEN |
| HTTP 404 | Version not found β list recent available versions |
| Network failure | Suggest checking network connection |
| Empty body | Link user to the GitHub release page directly |
| Missing v prefix | Auto-add it: 2026.3.31 β v2026.3.31 |