원클릭으로
bump-version
Guide for bumping project versions and running base release-preparation validations.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Guide for bumping project versions and running base release-preparation validations.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Guide for creating E2E feature tests with VHS GIF generation and Zola feature page auto-discovery for new visible UI features.
Guide for reviewing code changes (uncommitted or on a branch), existing code, and the project in general, providing a structured review report.
Guide for preparing git commits in this repository, including context gathering and repository-specific commit message conventions.
Audit subprocess execution, path handling, SQL queries, panic conditions, and dependency risks in this Rust TUI project.
Sweep the codebase for tech debt and return a prioritized markdown task list of findings.
SOC 직업 분류 기준
| name | bump-version |
| description | Guide for bumping project versions and running base release-preparation validations. |
Use this skill when preparing a version bump for the project. The repository's current
release flow is defined in AGENTS.md; this skill only covers choosing the bump,
updating version files, and running the baseline validations that make the version-bump
change ready for normal review. Do not duplicate commit, tag, push, or pull workflow
steps here.
Version Selection
major, minor, or patch.patch by default for fixes, small UX improvements, refactors, docs
updates, model/config changes, and other incremental work within the current
0.y line.minor for milestone cuts: new top-level workflows, pages, modes, or
cross-cutting runtime/protocol changes that feel like a new product phase.1.0 policy. The changelog history shows patch
releases may still include additive features or removals while the project
remains below 1.0.0.patch.Version Bump
version field in the root Cargo.toml.Changelog
CHANGELOG.md.TZ=America/Los_Angeles date +%F), so late-day release work follows the
repository's PST/PDT release calendar.## [vX.Y.Z] - YYYY-MM-DD.### Contributors section under the new release entry with a bullet list of
GitHub usernames (example: - @minev-dev).Base Validation
prek hook catalog in
.pre-commit-config.yaml:
prek run --all-filesprek run clippy --all-files --hook-stage manualprek run test-workspace --all-files --hook-stage manual