소스 정보
- 저장소
- OnlyTerp/hermes-optimization-guide
- 최근 소스 활동
- 2026년 8월 22일 10:50
- 감지된 SKILL.md 언어
- 영어
- 스타
- 615
- 포크
- 48
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/OnlyTerp/hermes-optimization-guide --skill release-notes명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Prepare a 1-page brief for an upcoming meeting by combining calendar context, recent threads with attendees, and relevant docs
Weekly LLM cost breakdown by provider / gateway / skill, posted to private DM
Sweep inbox (email + Slack + Telegram DMs) and produce a prioritized action list with suggested replies
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