Skip to main content

release

Prepare a release by updating the changelog and creating a git tag Use when this capability is needed.

설치로 이동

소스 정보

저장소
tomevault-io/tomes
최근 소스 활동
2026년 7월 23일 21:48
감지된 SKILL.md 언어
영어
스타
1
포크
0

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
release
description
Prepare a release by updating the changelog and creating a git tag Use when this capability is needed.
metadata
{"author":"cfoust"}
# Prepare a Release You are preparing release `$ARGUMENTS` for the cy project. ## Steps ### 1. Validate the version argument The version must match the format `vX.Y.Z` (e.g. `v1.10.2`). If it doesn't, stop and tell the user. ### 2. Find the last release tag Run `git tag --sort=-v:refname | head -1` to get the most recent release tag. ### 3. Gather changes since the last release Run `git log <last-tag>..HEAD --oneline` to get all commits since the last release. Read through them carefully to understand what changed. ### 4. Draft changelog entries Based on the commit log, write concise changelog bullet points. Follow the existing style in `CHANGELOG.md`: - Each entry is a single `- ` bullet point - Focus on user-facing changes: features, fixes, improvements - Skip purely internal changes (CI, refactoring, docs typos) unless significant - Link to relevant docs or specs where appropriate (match existing style) - Group related commits into a single entry when it makes sense ### 5. Show the user the draft Present the drafted changelog entries to the user and ask for approval before making any changes. Wait for their confirmation. ### 6. Update CHANGELOG.md Insert a new section at the top of the changelog (after the `# Changelog` heading) with the format: ``` ## X.Y.Z - YYYY-MM-DD ``` Note: the heading uses the version **without** the `v` prefix. Use today's date. ### 7. Commit and tag ```bash git add CHANGELOG.md git commit -m "release: $ARGUMENTS" git tag $ARGUMENTS ``` ### 8. Remind the user After tagging, remind the user to push the tag with: ``` git push origin main && git push origin $ARGUMENTS ``` Do NOT push automatically. --- > Converted and distributed by [TomeVault](https://tomevault.io/claim/cfoust) — claim your Tome and manage your conversions. <!-- tomevault:4.0:skill_md:2026-04-11 -->
GitHub에서 보기