Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计通过

openclaw-release-monitorOpenClaw 发布 monitor

Agent Skill

openclaw-release-monitor 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,599

周安装

147

GitHub Stars

公开资料未说明

下载量

1,164
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:openclaw-release-monitor(OpenClaw 发布 monitor)
来源仓库:https://github.com/tjefferson/openclaw-release-monitor
安装命令:
openclaw skills install openclaw-release-monitor
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install openclaw-release-monitor

简介

查看 GitHub 上的 OpenClaw 发行说明,显示翻译为用户语言的突出显示和分类更改。

SKILL.md

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:

  • "OpenClaw latest version", "what's new in OpenClaw", "OpenClaw updates"
  • "OpenClaw changelog", "OpenClaw release notes"
  • A specific OpenClaw version (e.g. "what changed in v2026.3.31")
  • "compare OpenClaw versions", "upgrade notes"
  • "openclaw 最新版本", "openclaw 更新了什么"

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/latest

# Latest 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:

  • Breaking → 🚨 Breaking changes
  • Changes / Features → ✨ New features & improvements
  • Fixes / Bug → 🐛 Bug fixes

Output rules

Language

  • Detect the user's language from their message.
  • If the user writes in English, output in English — no translation needed, just clean up and condense.
  • If the user writes in any other language (Chinese, Japanese, Korean, etc.), translate all entries into that language.

Translation guidelines

  • Keep module prefixes as-is (e.g. Gateway/auth, Agents/MCP, Plugin SDK)
  • Keep technical terms in English (API, OAuth, WebSocket, MCP, SQLite, SDK, CLI, Docker, SecretRef, ETag)
  • Strip noise: remove trailing (#12345) issue numbers and Thanks @username credits
  • Condense: drop verbose subordinate clauses (so..., while..., instead of...), keep only the core change

Default output (compact mode)

Show only highlights + stats + interactive prompt. Do NOT dump the full list unless asked.

# OpenClaw v2026.3.31

- Released: 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 approved

**95 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

SituationAction
HTTP 403API rate limited — suggest setting GITHUB_TOKEN
HTTP 404Version not found — list recent available versions
Network failureSuggest checking network connection
Empty bodyLink user to the GitHub release page directly
Missing v prefixAuto-add it: 2026.3.31v2026.3.31

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

92.74%
按下载量换算1,079

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install openclaw-release-monitor 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills