release — for Claude Code release, community, for Claude Code, ide skills, gh auth status, git status --short, ## 手順 ### 0. ローカルを最新化(必須), ### 1. バージョン更新, ### 2. CHANGELOG.md 更新, ### 3. リリースコミット作成

v1.0.0

このスキルについて

適した場面: Ideal for AI agents that need llm主導でバージョン更新とリリースコミットを作成し、ワークフローでタグ・release・配布を完了する。. ローカライズされた概要: release helps AI agents handle repository-specific developer workflows with documented implementation details.

機能

LLM主導でバージョン更新とリリースコミットを作成し、ワークフローでタグ・Release・配布を完了する。
gh auth status が成功すること
git status --short が空であること
origin/develop を最新化できること
release (/release) 実行

# 主なトピック

akiojin akiojin
[6]
[0]
更新日: 4/15/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

適した場面: Ideal for AI agents that need llm主導でバージョン更新とリリースコミットを作成し、ワークフローでタグ・release・配布を完了する。. ローカライズされた概要: release helps AI agents handle repository-specific developer workflows with documented implementation details.

このスキルを使用する理由

推奨ポイント: release helps agents llm主導でバージョン更新とリリースコミットを作成し、ワークフローでタグ・release・配布を完了する。. release helps AI agents handle repository-specific developer workflows with documented implementation details.

おすすめ

適した場面: Ideal for AI agents that need llm主導でバージョン更新とリリースコミットを作成し、ワークフローでタグ・release・配布を完了する。.

実現可能なユースケース for release

ユースケース: Applying LLM主導でバージョン更新とリリースコミットを作成し、ワークフローでタグ・Release・配布を完了する。
ユースケース: Applying gh auth status が成功すること
ユースケース: Applying git status --short が空であること

! セキュリティと制限

  • 制約事項: Requires repository-specific context from the skill documentation
  • 制約事項: Works best when the underlying tools and dependencies are already configured

About The Source

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Labs デモ

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ とインストール手順

These questions and steps mirror the structured data on this page for better search understanding.

? よくある質問

release とは何ですか?

適した場面: Ideal for AI agents that need llm主導でバージョン更新とリリースコミットを作成し、ワークフローでタグ・release・配布を完了する。. ローカライズされた概要: release helps AI agents handle repository-specific developer workflows with documented implementation details.

release はどうやって導入しますか?

次のコマンドを実行してください: npx killer-skills add akiojin/llmlb/release。Cursor、Windsurf、VS Code、Claude Code など19以上のIDEで使えます。

release の主な用途は?

主な用途は次のとおりです: ユースケース: Applying LLM主導でバージョン更新とリリースコミットを作成し、ワークフローでタグ・Release・配布を完了する。, ユースケース: Applying gh auth status が成功すること, ユースケース: Applying git status --short が空であること。

release に対応するIDEは?

このスキルは Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer に対応しています。統一された導入には Killer-Skills CLI を使えます。

release に制限はありますか?

制約事項: Requires repository-specific context from the skill documentation. 制約事項: Works best when the underlying tools and dependencies are already configured.

このスキルの導入方法

  1. 1. ターミナルを開く

    プロジェクトディレクトリでターミナルまたはコマンドラインを開きます。

  2. 2. インストールコマンドを実行

    npx killer-skills add akiojin/llmlb/release を実行してください。CLI がIDEまたはエージェントを自動検出し、スキルを設定します。

  3. 3. スキルを使い始める

    このスキルはすぐに有効になります。現在のプロジェクトで release をすぐ使えます。

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

release

Install release, an AI agent skill for AI agent workflows and automation. Explore features, use cases, limitations, and setup guidance.

SKILL.md
Readonly
Upstream Repository Material
The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

Release Workflow

LLM主導でバージョン更新とリリースコミットを作成し、ワークフローでタグ・Release・配布を完了する。

Preflight

  • gh auth status が成功すること
  • git status --short が空であること
  • origin/develop を最新化できること

フロー

text
1release (/release) 実行 23① origin/develop を pull してローカルを最新化 45② バージョン更新(Cargo.toml, CHANGELOG.md) 67③ chore(release): vX.Y.Z コミット作成 89④ Closing Issue を収集 1011⑤ develop → main マージ(PR本文に Closing Issues 記載) 1213⑥ release.yml がタグ作成 → GitHub Release作成 1415⑦ publish.yml がバイナリビルド → Release にアタッチ

手順

0. ローカルを最新化(必須)

bash
1git fetch origin 2git pull origin develop

1. バージョン更新

toml
1[workspace.package] 2version = "X.Y.Z"

2. CHANGELOG.md 更新

markdown
1## [X.Y.Z] - YYYY-MM-DD 2 3### Added 4- 新機能の説明 5 6### Fixed 7- バグ修正の説明

3. リリースコミット作成

bash
1git add Cargo.toml Cargo.lock CHANGELOG.md 2git commit -m "chore(release): vX.Y.Z" 3git push origin develop

4. Closing Issue の収集

  1. 前回タグ〜HEADのコミットからPR番号抽出
bash
1LAST_TAG=$(git describe --tags --abbrev=0) 2PR_NUMBERS=$(git log ${LAST_TAG}..HEAD --oneline \ 3 | grep -oE '(#[0-9]+)|\bMerge pull request #[0-9]+' \ 4 | grep -oE '[0-9]+' | sort -u)
  1. 各PR本文から closing keyword 抽出
bash
1CLOSING_ISSUES="" 2for pr in $PR_NUMBERS; do 3 BODY=$(gh pr view "$pr" --json body -q '.body' 2>/dev/null || true) 4 ISSUES=$(echo "$BODY" \ 5 | grep -oiE '(close[sd]?|fix(e[sd])?|resolve[sd]?)\s+#[0-9]+' \ 6 | grep -oE '[0-9]+' || true) 7 CLOSING_ISSUES="$CLOSING_ISSUES $ISSUES" 8done 9CLOSING_ISSUES=$(echo "$CLOSING_ISSUES" | tr ' ' '\n' | sort -u | grep -v '^$')
  1. PR番号を除外してIssueのみ残す
bash
1REAL_ISSUES="" 2for num in $CLOSING_ISSUES; do 3 IS_PR=$(gh api "repos/{owner}/{repo}/issues/$num" \ 4 --jq 'has("pull_request") and .pull_request != null' 2>/dev/null || echo "false") 5 if [ "$IS_PR" = "false" ]; then 6 REAL_ISSUES="$REAL_ISSUES $num" 7 fi 8done
  1. PR本文用に出力
bash
1for num in $REAL_ISSUES; do 2 echo "Closes #$num" 3done

5. main へマージ

bash
1# 推奨: 既存スクリプト経由 2./scripts/prepare-release.sh 3 4# または prepare-release workflow を直接起動 5gh workflow run prepare-release.yml 6 7# 手動PR作成の場合 8gh pr create --base main --head develop \ 9 --title "chore(release): vX.Y.Z"

6. 配布確認

  • gh release view vX.Y.Z
  • gh run list --workflow=publish.yml --limit 3
  • GitHub Releases

注意

  • バージョンは Semantic Versioning に従う
  • chore(release): プレフィックスは必須(release.yml のトリガー条件)
  • gh auth login 済みであること

関連スキル

Looking for an alternative to release or another community skill for your workflow? Explore these related open-source skills.

すべて表示

openclaw-release-maintainer

Logo of openclaw
openclaw

ローカライズされた概要: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

333.8k
0
AI

widget-generator

Logo of f
f

ローカライズされた概要: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf

149.6k
0
AI

flags

Logo of vercel
vercel

ローカライズされた概要: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
ブラウザ

pr-review

Logo of pytorch
pytorch

ローカライズされた概要: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
開発者