release-notes

release-notes is a skill for Claude Code from Dannykkh/skill-olympus. It costs 64 tokens per session (2,769 once invoked), scanned A, original, MIT.

A release-automation tool that uses Conventional Commits, a standard commit-message format, to prepare a software release.

In plain words
What is it for?
Use it to analyze commits, choose a patch, minor, or major version, update CHANGELOG.md, create a Git tag, preview changes, or publish a GitHub Release.
Why use it?
It removes the repetitive work of choosing a version, writing a changelog, and creating Git tags. It can also prepare a GitHub Release when requested.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the skill-olympus plugin — 98 skills, 7 commands, 42 agents, 5 MCP servers shipped together

Good fit Use it to analyze commits, choose a patch, minor, or major version, update CHANGELOG.md, create a Git tag, preview changes, or publish a GitHub Release.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dannykkh/skill-olympus/release-notes
Install

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.

Any agent
npx skills add Dannykkh/skill-olympus --skill release-notes
Clone the repo
git clone --depth 1 https://github.com/Dannykkh/skill-olympus

Made for: Claude Code.

Or install skill-olympus, the plugin that ships this one along with the rest of its 98 skills, 7 commands, 42 agents, 5 MCP servers.

Wrote 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.

agentmods badge for release-notes

README.md
[![agentmods](https://agentmods.dev/badge/skills/dannykkh/skill-olympus/release-notes.svg)](https://agentmods.dev/skills/dannykkh/skill-olympus/release-notes)
Your own site
<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>
Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,769 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 5d ago against content hash de4a4e5a6cfd, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

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.

skills/release-notes/SKILL.md · 367 lines

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

Read the full file on GitHub · 367 lines

Changes

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.

  1. 5d ago First seen · 367 lines · 64 tokens per session scan A de4a4e5a6cfd

Subscribe to this mod's changes

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.