openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > openclaw-version-monitor

监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 推送版本更新通知 (3) 生成中文版发布说明

通信与消息

作者:MaxHo @00010110

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 145 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :可疑 · OpenClaw :可疑

Package:00010110/openclaw-version-monitor

安全扫描(ClawHub)

  • VirusTotal :可疑
  • OpenClaw :可疑

OpenClaw 评估

The skill's stated purpose (monitor GitHub releases, translate, and push to Telegram/Feishu) is plausible, but the runtime instructions omit required credentials and environment details and hardcode an external Telegram chat ID, which is inconsistent and potentially risky.

目的

The skill claims to fetch GitHub releases and push translated release notes to Telegram and Feishu — that capability matches the instructions. However, it does not declare or request any credentials or webhooks required to send messages to Telegram/Feishu, and it also omits required tools (curl, jq) from declared requirements. The presence of a hardcoded Telegram Chat ID (8290054457) without a corresponding bot token or webhook is an unexplain…

说明范围

Instructions explicitly call the GitHub API and show curl/jq commands (implying those binaries must exist), describe translation and parsing rules, and schedule cron-like checks. But they do not explain where to store/compare the 'current version' state, how translations are performed (local vs external API), nor how to authenticate/push to Telegram or Feishu. The hardcoded external Telegram recipient is included in templates, which could caus…

安装机制

This is an instruction-only skill with no install spec and no code files, so it does not write files or download remote code. That minimizes install-time risk. However, being instruction-only means the runtime behavior depends on the agent environment (available binaries, configured credentials).

证书

requires.env lists none, and no primary credential is declared — but pushing to Telegram/Feishu normally requires a Telegram bot token or Feishu app/webhook credentials. The skill's omission of these required secrets is inconsistent and unexplained. Additionally, the template hardcodes a Telegram Chat ID (potentially sending notifications to someone else) which is unexpected for a user-targeted notifier.

持久

The skill does not request permanent/always-on inclusion and does not claim to modify other skills or system-wide settings. It suggests scheduling externally (cron expressions) but does not itself assert elevated privileges.

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「openclaw-version-monitor」。简介:监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文, 并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/00010110/openclaw-version-monitor/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: openclaw-version-monitor
description: |
  监控 OpenClaw GitHub 版本更新,获取最新版本发布说明,翻译成中文,
  并推送到 Telegram 和 Feishu。用于:(1) 定时检查版本更新 (2) 
  推送版本更新通知 (3) 生成中文版发布说明
---

# OpenClaw 版本监控

## 功能

1. **检查版本** - 调用 GitHub API 获取最新版本
2. **对比版本** - 与当前版本比较,判断是否有新版本
3. **获取发布说明** - 获取完整的 changelog
4. **翻译中文** - 将英文发布说明翻译成中文
5. **推送到渠道** - 发送消息到 Telegram 和 Feishu

## 使用方法

### 检查版本

```bash
# 获取最新版本号
curl -s https://api.github.com/repos/openclaw/openclaw/releases/latest | jq -r '.tag_name'
# 返回: v2026.3.13

# 获取最新版本内容
curl -s https://api.github.com/repos/openclaw/openclaw/releases/latest | jq -r '.body'
```

### 推送格式

```
🆕 OpenClaw 版本更新 | {版本号}

📅 发布于: {日期}

━━━━━━━━━━━━━━━━━━━━━━━━━━

📝 更新内容:

【新增功能】
• ...

【问题修复】
• ...

━━━━━━━━━━━━━━━━━━━━━━━━━━

🔗 完整更新日志:
https://github.com/openclaw/openclaw/releases/tag/{版本号}
```

### Telegram 推送

- Chat ID: 8290054457
- 限制: 4096 字符/条

### Feishu 推送

- 需要目标用户或群 ID
- 限制相对宽松

## 定时任务配置

### 工作时段 (9:00-19:00)
- 表达式: `0,30 9-18 * * *`
- 行为: 检测到新版本立即推送

### 非工作时段
- 表达式: `0 9 * * *`
- 行为: 每天早上9点检查并推送

## 当前版本

当前监控版本: 2026.3.13