소스 정보
- 저장소
- Guilhermepelido/hermes-optimization-guide
- 최근 소스 활동
- 2026년 4월 30일 20:12
- 감지된 SKILL.md 언어
- 영어
- 스타
- 6
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Guilhermepelido/hermes-optimization-guide --skill release-notes명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
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)"}} |
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.
- name: weekly-release-preview
schedule: "0 16 * * 5" # Fridays 4pm
task: /release-notes range=origin/main..last-release
notify: telegram_private