Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

release-tracker发布跟踪器

Agent Skill

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

总安装

17,852

周安装

759

GitHub Stars

公开资料未说明

下载量

6,254
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install release-tracker

简介

release-tracker 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词快速定位候选结果时使用。

  • 跟踪多个 GitHub 仓库版本并生成优先级摘要,支持 Discord 推送。
  • 通过 clawhub 安装,命令为 openclaw skills install release-tracker。
  • 建议确认权限范围、维护状态及是否触发联网操作。
  • 适用宿主包括 OpenClaw,接入前应确认版本、权限和运行环境要求。

SKILL.md

name
release-tracker
description
>

Release Tracker

Monitor one or more GitHub repositories for new releases, generate prioritized summaries, and deliver them to configured channels.

Prerequisites

  • gh CLI installed and authenticated (gh auth status)
  • For Discord delivery: Discord channel configured in OpenClaw

Quick Start

Single Repo Setup

Set up tracking for one repo with a cron job:

1. Create a config file at <workspace>/release-tracker.json (see Configuration)
2. Create a cron job (isolated, daily) that runs the check
3. The cron reads config, checks GitHub, compares versions, posts if new

Multi-Repo Setup

Add multiple repos to the repos array in config. Each repo has independent version tracking and priority rules.

Configuration

Store config at <workspace>/release-tracker.json:

{
  "repos": [
    {
      "owner": "openclaw",
      "repo": "openclaw",
      "displayName": "OpenClaw",
      "priorities": ["discord", "voice", "telegram", "cron", "agent"],
      "outputChannel": "<your-discord-channel-id>",
      "outputFormat": "discord-forum",
      "language": "en",
      "includePrerelease": false
    }
  ],
  "versionStore": "release-tracker-state.json",
  "schedule": "0 10 * * *",
  "timezone": "UTC"
}

Config Fields

  • repos[].owner / repos[].repo — GitHub owner/repo
  • repos[].displayName — friendly name for output header
  • repos[].priorities — keywords to sort higher in summary (matched against changelog text)
  • repos[].outputChannel — Discord channel/forum ID for delivery
  • repos[].outputFormatdiscord-forum | discord-channel | telegram | slack | text

- discord-forum: create a new forum post per release - discord-channel: send a message to a Discord channel - telegram: send a message to a Telegram chat/channel/group - slack: send a message to a Slack channel - text: return plain text (for piping to other tools)

  • repos[].languagezh | en (summary language)
  • repos[].includePrerelease — track pre-release/RC versions
  • repos[].filter — optional, stable | all (default: stable)
  • versionStore — filename for tracking last-seen versions (relative to workspace)
  • schedule — cron expression for check frequency
  • timezone — timezone for cron schedule

Workflow

Check for New Releases

  1. Read config from release-tracker.json
  2. Read version state from <versionStore>
  3. For each repo:
   gh release list --repo <owner>/<repo> --limit 5 --json tagName,publishedAt,isPrerelease
  1. Compare latest tag against stored version
  2. If new version found, proceed to summarize

Generate Summary

  1. Fetch release content:
   gh release view <tag> --repo <owner>/<repo> --json body
  1. If release body is sparse, also check local CHANGELOG if the package is installed:
   cat /opt/homebrew/lib/node_modules/<package>/CHANGELOG.md
  1. Parse and categorize changes into sections:

- Priority items — lines matching any priorities keywords, shown first - Features — new capabilities - Breaking changes — marked with ⚠️ - Fixes — bug fixes relevant to user (skip internal/CI fixes) - Security — collapsed at bottom unless critical - Skip: CI/test-only changes, dependency bumps, internal refactors

Prioritization Rules

Sort entries within each section:

  1. Lines matching priorities keywords → top
  2. User-facing changes → middle
  3. Internal/infrastructure → bottom
  4. Omit: trivial fixes, test-only changes, doc typos

Format Output

Discord Forum (discord-forum)

Title: 📦 v{version}

Body:
## {displayName} v{version}

### ⭐ Key Features
{priority matches + features, formatted as bold headers with descriptions}

### ⚠️ Breaking Changes
{breaking changes with migration notes}

### 🔧 Fixes
{relevant fixes, grouped by area}

### 🛡️ Security
{security fixes, brief}

Discord Channel (discord-channel)

Compact single-message format, max 2000 chars.

Telegram (telegram)

Same structure as Discord Channel but respects Telegram formatting (markdown v2). Max 4096 chars.

Slack (slack)

Same structure, uses Slack mrkdwn formatting. Max 3000 chars.

Text (text)

Plain markdown, no emoji headers.

Deliver

Based on outputFormat:

  • discord-forum: message(action=thread-create, channelId=<outputChannel>, threadName=<title>, message=<body>)
  • discord-channel: message(action=send, channel=discord, target=<outputChannel>, message=<body>)
  • telegram: message(action=send, channel=telegram, target=<outputChannel>, message=<body>)
  • slack: message(action=send, channel=slack, target=<outputChannel>, message=<body>)
  • text: return as tool result

Update State

After successful delivery, update version store:

{
  "openclaw/openclaw": {
    "lastVersion": "2026.2.22-2",
    "lastCheckedAt": "2026-02-24T10:00:00+09:00",
    "lastPublishedAt": "2026-02-22T..."
  }
}

Cron Setup

Create the cron job for automated checking:

Name: release-tracker
Schedule: {config.schedule} with tz {config.timezone}
Session: isolated
Payload: agentTurn with message referencing this skill
Delivery: none (skill handles its own delivery)

The cron message should instruct the agent to:

  1. Read release-tracker.json for config
  2. Read release-tracker-state.json for last versions
  3. Check each repo via gh release list
  4. If new releases found, generate summaries and deliver
  5. Update state file

Manual Check

User can trigger manually: "check for new releases" or "any updates on openclaw?"

The agent should:

  1. Load config
  2. Run the check workflow
  3. Report findings conversationally (not necessarily in forum format)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

71.44%
按下载量换算4,468

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills