Changelog Watcher
/install changelog-watcher
Changelog Watcher
Maintains a watchlist of GitHub repos and npm packages, detects new releases, and produces markdown reports with breaking changes highlighted.
Files
watchlist.json— user config (create fromassets/watchlist.example.json)state.json— auto-managed last-seen versions (do not edit)scripts/compare_versions.py— main entry point; calls the othersscripts/check_github.py— GitHub releases APIscripts/check_npm.py— npm registryscripts/format_report.py— markdown report generator
For setup, watchlist format, cron scheduling, and rate limit guidance → read references/setup-guide.md.
Skill Directory
~/.openclaw/workspace/skills/changelog-watcher/
All script paths below are relative to this directory.
Usage
Check for new releases and print report
python3 scripts/compare_versions.py --update-state | python3 scripts/format_report.py
Dry-run (check without advancing state)
python3 scripts/compare_versions.py | python3 scripts/format_report.py
First-time setup (set baseline, no output)
cp assets/watchlist.example.json watchlist.json
# edit watchlist.json to your packages
python3 scripts/compare_versions.py --update-state
Workflow
- Confirm
watchlist.jsonexists. If not, guide user to copy fromassets/watchlist.example.jsonand fill it in. - Run
compare_versions.py(with--update-stateunless doing a dry-run). - Pipe output to
format_report.py. - Present the markdown report to the user.
- If the user wants to schedule this: provide the cron line from
references/setup-guide.md.
Adding Entries
To add a GitHub repo:
{"source": "github", "owner": "OWNER", "repo": "REPO", "name": "Display Name"}
To add an npm package:
{"source": "npm", "package": "package-name", "name": "Display Name"}
Append to the watch array in watchlist.json, then run the full pipeline.
Error Handling
- Rate limited (exit 2): Wait for the retry window; check how many GitHub entries are in the watchlist vs the 60/hr limit.
- Not found (exit 3): Verify the owner/repo or package name in the watchlist.
- Network error: Check connectivity; retry.
- First-run shows zero releases: Expected — first run sets the baseline only.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install changelog-watcher - 安装完成后,直接呼叫该 Skill 的名称或使用
/changelog-watcher触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Changelog Watcher 是什么?
Monitor GitHub repos and npm packages for new releases and version updates. Summarizes changelogs and highlights breaking changes. Use when the user asks to... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 111 次。
如何安装 Changelog Watcher?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install changelog-watcher」即可一键安装,无需额外配置。
Changelog Watcher 是免费的吗?
是的,Changelog Watcher 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Changelog Watcher 支持哪些平台?
Changelog Watcher 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Changelog Watcher?
由 New Age Investments(@newageinvestments25-byte)开发并维护,当前版本 v1.0.0。