Agent skill
release-preview
次回リリースに含まれる変更をプレビューする。「リリースプレビュー」「次のリリース」「リリース内容確認」と言われた場合に使用する。
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/release-preview
SKILL.md
リリースプレビュー
次回リリースに含まれる変更をプレビューします。
実行手順
以下のコマンドを順番に実行してください:
1. 現在の状態確認
git describe --tags --abbrev=0 2>/dev/null || echo "タグなし"
git branch --show-current
git status --short
2. 前回リリースからのコミット一覧
最新タグがある場合:
git log --oneline --no-merges $(git describe --tags --abbrev=0)..HEAD
タグがない場合:
git log --oneline --no-merges -20
3. CHANGELOG の Unreleased セクション確認
CHANGELOG.md の先頭部分を確認し、Unreleased セクションがあるか確認:
head -50 CHANGELOG.md
4. 変更の分類
コミット一覧から以下を分類して報告:
リリースノートに含まれるもの:
feat:新機能fix:バグ修正BREAKING CHANGE:破壊的変更
リリースノートに含まれないもの:
docs:,test:,chore:,ci:,build:,refactor:,style:,perf:
5. 推奨バージョンの提示
| 変更タイプ | 次のバージョン |
|---|---|
| BREAKING CHANGE あり | メジャーアップ(例: v1.x.x → v2.0.0) |
| feat: あり | マイナーアップ(例: v1.0.x → v1.1.0) |
| fix: のみ | パッチアップ(例: v1.0.0 → v1.0.1) |
6. 品質チェック
cargo fmt -- --check && cargo clippy --all-targets -- -D warnings && cargo test
次のステップ
リリースを実行する場合:
/release v<VERSION>
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?