基于 SOC 职业分类
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/claude-world/cf-browser --skill changelog-monitor命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | changelog-monitor |
| description | Monitor release notes and changelogs from any software project via its web page |
| user_invocable | true |
Track releases, changelogs, and breaking changes from any software project's web page.
CF Browser MCP server must be configured in .mcp.json (see quick start).
GitHub releases, framework changelogs, and library docs are often JS-rendered pages that WebFetch can't read. This skill uses browser_json to extract structured release data from any page.
From the user's input, resolve the changelog URL:
https://github.com/{owner}/{repo}/releaseshttps://github.com/{owner}/{repo}/releases (resolve via npm registry)https://nextjs.org/blog)browser_json(url, prompt="Extract the latest N releases with version, date, and key changes as JSON array")
For changelog pages (non-GitHub):
browser_json(url, prompt="Extract version entries with version number, release date, and list of changes")
For each release:
Output a structured summary:
## {Project} — Latest Releases
### v2.1.74 (2026-03-12)
- **NEW**: Added `autoMemoryDirectory` setting
- **FIX**: Fixed memory leak in streaming API response buffers
- Action needed: None
### v2.1.73 (2026-03-11)
- **NEW**: Added `modelOverrides` setting
- **FIX**: Fixed freezes and 100% CPU loops
- Action needed: Update recommended (stability fix)
### v2.1.72 (2026-03-10)
- **NEW**: Tool search bypasses third-party proxy gate
- Action needed: None
url or project (required): GitHub repo, npm package name, or direct changelog URLcount (optional, default=5): Number of releases to fetchwatch (optional): If set, compare against last known version and highlight new releases"What's new in Claude Code?"
→ browser_json("https://github.com/anthropics/claude-code/releases") → structured summary
"Check for breaking changes in Next.js 15"
→ browser_json("https://nextjs.org/blog") → filter breaking changes
"Latest Hono releases"
→ browser_json("https://github.com/honojs/hono/releases") → version + changes
"Has Astro released anything since 5.18?"
→ Extract releases → filter versions > 5.18