release — AIエージェントのリリース release, ruby-slippers, community, AIエージェントのリリース, ide skills, バージョンの公開を自動化, CHANGELOG.mdの更新, バージョン管理, 事前チェック, バージョン番号の提案

v1.0.0

このスキルについて

開発エージェントが自動化されたリリース管理とバージョン管理を必要とする場合に最適 AIエージェントのリリース手順は、バージョンの公開と管理を自動化するための手順

機能

バージョンの公開を自動化
CHANGELOG.mdの更新
バージョンの種類の決定(Release、Beta、Alpha)
事前チェック
バージョン番号の提案

# Core Topics

mckalexee mckalexee
[0]
[0]
Updated: 2/23/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
8/11
Quality Score
44
Canonical Locale
en
Detected Body Locale
en

開発エージェントが自動化されたリリース管理とバージョン管理を必要とする場合に最適 AIエージェントのリリース手順は、バージョンの公開と管理を自動化するための手順

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

CHANGELOG.mdエントリを使用してリリースタイプとバージョンを決定し、Alpha、Beta、リリースバージョンのタグ名をサポートし、未リリースエントリの事前チェックを実行しながら、エージェントに出版プロセスを自動化する能力を付与

おすすめ

開発エージェントが自動化されたリリース管理とバージョン管理を必要とする場合に最適

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

変更ログの更新に基づいてリリース手順を自動化
タグ名からリリースタイプとバージョンを決定
CHANGELOG.mdの未リリースエントリに対して事前チェックを実行

! セキュリティと制限

  • 公開するには明示的なユーザー指示が必要
  • CHANGELOG.mdのフォーマットとコンテンツに依存
  • 特定のリリースタイプ(Alpha、Beta、リリース)のみ

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

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 & Installation Steps

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

? Frequently Asked Questions

What is release?

開発エージェントが自動化されたリリース管理とバージョン管理を必要とする場合に最適 AIエージェントのリリース手順は、バージョンの公開と管理を自動化するための手順

How do I install release?

Run the command: npx killer-skills add mckalexee/ruby-slippers/release. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for release?

Key use cases include: 変更ログの更新に基づいてリリース手順を自動化, タグ名からリリースタイプとバージョンを決定, CHANGELOG.mdの未リリースエントリに対して事前チェックを実行.

Which IDEs are compatible with release?

This skill is compatible with 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. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for release?

公開するには明示的なユーザー指示が必要. CHANGELOG.mdのフォーマットとコンテンツに依存. 特定のリリースタイプ(Alpha、Beta、リリース)のみ.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add mckalexee/ruby-slippers/release. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use release immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

release

AIエージェントのリリース手順を学び、バージョンの公開と管理を自動化する

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Release Procedure

NEVER run this without explicit user instruction to publish.

Inputs

  • Version: provided as $ARGUMENTS, or ask the user. Suggest based on ## Unreleased content in CHANGELOG.md: all bug fixes → patch bump, any new features → minor bump.
  • Release type: determined by tag name — 1.2.0 = Release, 1.2.0-beta1 = Beta, 1.2.0-alpha1 = Alpha.

Pre-flight Checks

  1. Read CHANGELOG.md and confirm there are entries under ## Unreleased. If empty, stop and ask.
  2. Run git status — working tree must be clean. If not, stop and ask.
  3. Run git log --oneline -5 — confirm we're on main (or a hotfix/* branch if doing a hotfix release).
  4. Confirm the version number with the user before proceeding.

Final Release (e.g., 1.2.0)

  1. In CHANGELOG.md:
    • Rename ## Unreleased## X.Y.Z - YYYY-MM-DD (today's date).
    • Add a fresh ## Unreleased section with no entries above it.
  2. Copy only the new version's section (the ## X.Y.Z - date heading and its bullet points) into RELEASE_NOTES.md, replacing its entire contents.
  3. Commit all changes: "Release X.Y.Z"
  4. Push the commit.
  5. Tag and push: git tag X.Y.Z && git push --tags
  6. Confirm: the GitHub Actions workflow will build and upload to CurseForge + create a GitHub Release. Show the user the Actions URL.

Pre-release (e.g., 1.2.0-beta1)

Pre-releases do NOT rename the Unreleased section — 1.2.0 isn't final yet.

  1. Do NOT modify CHANGELOG.md headings. The ## Unreleased section stays as-is.
  2. Copy the current ## Unreleased content (just the bullet points, not the heading) into RELEASE_NOTES.md, replacing its entire contents. Add a heading like ## 1.2.0-beta1 at the top.
  3. Commit: "Pre-release X.Y.Z-betaN"
  4. Push the commit.
  5. Tag and push: git tag X.Y.Z-betaN && git push --tags
  6. The packager marks this as Beta/Alpha on CurseForge automatically.

After Release

  • Verify the GitHub Actions run started: gh run list --limit 1
  • Tell the user the release is in progress and link to the Actions run.

関連スキル

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

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

カスタマイズ可能なウィジェットプラグインをprompts.chatのフィードシステム用に生成する

149.6k
0
AI

flags

Logo of vercel
vercel

React フレームワーク

138.4k
0
ブラウザ

pr-review

Logo of pytorch
pytorch

Pythonにおけるテンソルと動的ニューラルネットワーク(強力なGPUアクセラレーション)

98.6k
0
開発者