用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/OnlyTerp/hermes-optimization-guide --skill release-notes命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | release-notes |
| description | Build human-readable release notes from a range of commits or merged PRs |
| when_to_use | ["User invokes /release-notes v1.2.0..v1.3.0","Scheduled as part of a release job"] |
| toolsets | ["terminal","github"] |
| parameters | {"range":{"type":"string","description":"Git range (e.g. v1.2.0..HEAD) OR a GitHub milestone name","required":true},"repo":{"type":"string","description":"owner/repo (default is current dir's origin)"}} |
| security | {"trust":"trusted","notes":"Reads commit messages and PR titles (low-risk but externally authored);\nwrites only a draft document. Publishing the notes stays behind approval.\n"} |
| model_hint | anthropic/claude-sonnet-5 |
Produce a release-notes document following the "What's New / Improvements / Fixes / Breaking / Acknowledgements" structure used by Hermes, React, VS Code, etc.
Resolve the range:
range: looks like a git range (X..Y), use git log --pretty to list commits.github MCP.For each commit/PR, extract:
feat:, fix:, docs:, security:, perf:, refactor:, chore:)Group:
feat: with scope outside ci|deps|docsperf: and refactor:fix:security: + any PR labeled security regardless of prefixbreaking or any commit with !: markerdocs:Write in plain English. For each entry, rewrite the conventional-commit summary into a reader-friendly one-liner. Example:
feat(mcp): add http transport with reconnect backoffHTTP MCP servers now reconnect automatically with exponential backoff.Include PR links where available: ([#1234](https://github.com/owner/repo/pull/1234))
Output as markdown, ready to paste into a GitHub release.
# v1.3.0 — "Thunderbolt"
## 🚀 What's New
- HTTP MCP servers now reconnect automatically with exponential backoff. ([#1234](…))
- Gemini OAuth is now a first-class provider. ([#1270](…))
## ⚡ Improvements
- 40% faster skill load via async frontmatter parsing. ([#1205](…))
## 🐛 Fixes
- Telegram voice transcripts no longer truncate at 60s. ([#1240](…))
## 🔒 Security
- Redact GitHub PATs in log output. ([#1256](…))
## 🙏 Acknowledgements
Thanks to @alice, @bob, @charlie for contributions this release.
hermes cron create "0 16 * * 5" \
"Generate release notes for origin/main..last release" \
--skill release-notes --name weekly-release-preview --deliver telegram