Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Dannykkh/skill-olympus --skill release-notesgit clone --depth 1 https://github.com/Dannykkh/skill-olympusWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/dannykkh/skill-olympus/release-notes)<a href="https://agentmods.dev/skills/dannykkh/skill-olympus/release-notes"><img src="https://agentmods.dev/badge/skills/dannykkh/skill-olympus/release-notes.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00064 | $0.02769 |
| Opus 5 | $0.00032 | $0.01385 |
| Sonnet 5 | $0.00013 | $0.00554 |
| Haiku 4.5 | $0.00006 | $0.00277 |
Grade A, and why
release-notes scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 367 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Release Notes — 릴리즈 노트 자동화
Conventional Commits에서 버전을 결정하고, CHANGELOG를 생성하고, 태그를 찍는다.
commit-work스킬로 커밋한 뒤, 릴리즈할 때 사용.
Quick Start
/release # 자동 버전 결정 + CHANGELOG + 태그
/release patch # patch 버전 강제 (0.1.0 → 0.1.1)
/release minor # minor 버전 강제 (0.1.0 → 0.2.0)
/release major # major 버전 강제 (0.1.0 → 1.0.0)
/release --dry-run # 미리보기만 (변경 없음)
/release --no-tag # CHANGELOG만 생성 (태그 안 찍음)
/release --github # GitHub Release도 생성
공식 호출명: /release (별칭: 릴리즈, 릴리즈 노트, 버전 올려)
파이프라인 위치
/commit-work → /release
커밋 작성 릴리즈 노트 + 버전 + 태그
독립 실행 가능 — 파이프라인 밖에서 단독으로 사용.
CRITICAL: First Actions
1. Print Intro
Release Notes — 릴리즈 노트 생성
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
순서: Analyze → Version → CHANGELOG → Tag → (GitHub Release)
2. 현재 상태 확인
# 마지막 태그 확인
git describe --tags --abbrev=0 2>/dev/null || echo "태그 없음 (첫 릴리즈)"
# 마지막 태그 이후 커밋 목록
git log $(git describe --tags --abbrev=0 2>/dev/null)..HEAD --oneline
# 또는 태그 없으면 전체 커밋
git log --oneline
상태 출력:
📋 현재 상태:
마지막 버전: v{X.Y.Z} (또는 "없음 — 첫 릴리즈")
새 커밋: {N}개
브랜치: {branch}
새 커밋이 0개면:
⚠️ 마지막 태그 이후 새 커밋이 없습니다. 릴리즈할 내용이 없습니다.
→ 종료
Phase 1: 커밋 분석
마지막 태그 이후의 모든 커밋을 Conventional Commits 형식으로 파싱합니다.
파싱 규칙
type(scope): description → type, scope, description 추출
| Type | 분류 | 버전 영향 |
|---|---|---|
feat |
Features (새 기능) | minor |
fix |
Bug Fixes | patch |
docs |
Documentation | patch |
style |
Code Style | patch |
refactor |
Refactoring | patch |
perf |
Performance | patch |
test |
Tests | patch |
build |
Build System | patch |
ci |
CI/CD | patch |
chore |
Miscellaneous | patch |
revert |
Reverts | patch |
BREAKING CHANGE |
(footer 또는 ! suffix) |
major |
Conventional Commits가 아닌 커밋
Conventional Commits 형식이 아닌 커밋도 수집합니다:
Other Changes섹션에 포함- 버전 영향: patch
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 5d ago First seen · 367 lines · 64 tokens per session scan A de4a4e5a6cfd
release-notes is a skill published in the GitHub repository Dannykkh/skill-olympus (5 stars, last pushed yesterday), licensed MIT. It adds 64 tokens to every session and 2,769 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
factory-release
Cut a new release — bump package.json + VERSION in lockstep, commit, tag with a per-version breakdown since the last published baseline, push, publish a GitHub Release, and publish to npm. Five approval gates; the user edits release notes in their preferred editor.
git-hygiene
Git repository hygiene check. Stale branches, large files, commit conventions. Use when: "git cleanup", "git hygiene", "clean up branches", "git-hygiene", "stale branches", "git cleanup".
changelog
Use when the user wants a changelog, release notes, or asks what changed since the last release.
Next Task: Ship
Autonomously run the full delivery loop for the next roadmap task: suggest, worktree, implement, roadmap-sync, PR, self-review. Pass 'loop [N]' to repeat for up to N ready tasks.
Role: Git Manager
Git workflow: branch management, commit conventions, PR patterns, conflict resolution.
HUD: Claude Code Releases
Summarise Claude Code's own CHANGELOG.md, filtered and grouped for what actually matters to Jason.