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
인공지능

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
인공지능

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
개발자