بنقرة واحدة
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 ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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.
| 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