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

Acerca de este Skill

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

Características

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

# Temas principales

akiojin akiojin
[6]
[0]
Actualizado: 4/15/2026

Skill Overview

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

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

¿Por qué usar esta habilidad?

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

Mejor para

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

Casos de uso accionables for release

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

! Seguridad y limitaciones

  • Limitacion: Requires repository-specific context from the skill documentation
  • Limitacion: 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.

Demo 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 y pasos de instalación

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

? Preguntas frecuentes

¿Qué es release?

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

¿Cómo instalo release?

Ejecuta el comando: npx killer-skills add akiojin/llmlb/release. Funciona con Cursor, Windsurf, VS Code, Claude Code y más de 19 IDE adicionales.

¿Cuáles son los casos de uso de release?

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

¿Qué IDE son compatibles con release?

Esta skill es compatible con 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. Usa la CLI de Killer-Skills para una instalación unificada.

¿Tiene limitaciones release?

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

Cómo instalar este skill

  1. 1. Abre tu terminal

    Abre la terminal o línea de comandos en el directorio de tu proyecto.

  2. 2. Ejecuta el comando de instalación

    Ejecuta: npx killer-skills add akiojin/llmlb/release. La CLI detectará tu IDE o agente automáticamente y configurará la skill.

  3. 3. Empieza a usar el skill

    El skill ya está activo. Tu agente de IA puede usar release de inmediato en el proyecto actual.

! 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 済みであること

Habilidades relacionadas

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

Ver todo

openclaw-release-maintainer

Logo of openclaw
openclaw

Resumen localizado: 🦞 # 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
Inteligencia Artificial

widget-generator

Logo of f
f

Resumen localizado: 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

149.6k
0
Inteligencia Artificial

flags

Logo of vercel
vercel

Resumen localizado: 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
Navegador

pr-review

Logo of pytorch
pytorch

Resumen localizado: 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
Desarrollador