← スキル一覧に戻る

release
by ftnext
⭐ 0🍴 0📅 2026年1月24日
SKILL.md
name: release description: Bumps version and creates git tag for release disable-model-invocation: true argument-hint: "[version-number]"
Version Management
Version is stored in recent_state_summarizer/__init__.py as __version__ and referenced by pyproject.toml using setuptools dynamic versioning.
Bumping Version
Follow these steps to bump the version:
# 1. Edit version in recent_state_summarizer/__init__.py
# 2. Commit and tag
git add recent_state_summarizer/__init__.py
git commit -m "chore: Bump up X.Y.Z"
git tag vX.Y.Z
git push origin main --tags
Instructions
Prerequisites:
- This must be executed on the
mainbranch - All feature branches should be merged into
mainbefore running this command - Check current branch with
git branch --show-currentbefore proceeding
If the user provided a version number (e.g., /release 0.1.0), use that. Otherwise:
- Read the current version from
recent_state_summarizer/__init__.py - Parse the version number (format: MAJOR.MINOR.PATCH)
- Increment the PATCH number by 1
- Use the new version (e.g.,
0.0.9→0.0.10)
Execute the steps above, replacing X.Y.Z with the specified or auto-incremented version.
After creating the commit and tag, use AskUserQuestion to ask whether to push to remote:
- Question: "リモートにプッシュしますか?"
- Option 1: "今すぐプッシュする" → Execute
git push origin main --tags - Option 2: "後でやる" → Skip push and remind the user they can run
git push origin main --tagsmanually later
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です