hotfix — community hotfix, community, ide skills

v1.0.0

このスキルについて

DevOpsエージェントが効率的なパッチ管理のためのストリームライン化されたホットフィックスワークフローを必要とする場合に最適です。 Execute the hotfix workflow when the user asks `hotfix` or `/hotfix`: create a hotfix branch from main, guide fix+checks, open PR to main, and confirm patch release.

akiojin akiojin
[2]
[0]
Updated: 2/28/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/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
7/11
Quality Score
30
Canonical Locale
ja
Detected Body Locale
ja

DevOpsエージェントが効率的なパッチ管理のためのストリームライン化されたホットフィックスワークフローを必要とする場合に最適です。 Execute the hotfix workflow when the user asks `hotfix` or `/hotfix`: create a hotfix branch from main, guide fix+checks, open PR to main, and confirm patch release.

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

GitおよびGitHubのプロトコルを使用して、ブランチの作成からリリースの確認までのホットフィックスのワークフローを自動化する機能をエージェントに提供し、事前フライトチェックと変更、品質チェック、PRの作成、リリースの検証のためのガイド付きステップでプロセスを簡素化します。

おすすめ

DevOpsエージェントが効率的なパッチ管理のためのストリームライン化されたホットフィックスワークフローを必要とする場合に最適です。

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

特定の問題番号または記述的なタグを使用してホットフィックスブランチを自動的に作成する
パッチのリリース確認プロセスを簡素化する
開発者がホットフィックスの品質チェックとPRの作成を実行するためのガイダンスを提供する

! セキュリティと制限

  • GitおよびGitHubの設定が必要
  • 'gh auth status'が成功して認証される必要がある
  • 'git status --short'が空で、'main'ブランチが存在する必要がある

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 hotfix?

DevOpsエージェントが効率的なパッチ管理のためのストリームライン化されたホットフィックスワークフローを必要とする場合に最適です。 Execute the hotfix workflow when the user asks `hotfix` or `/hotfix`: create a hotfix branch from main, guide fix+checks, open PR to main, and confirm patch release.

How do I install hotfix?

Run the command: npx killer-skills add akiojin/llmlb/hotfix. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for hotfix?

Key use cases include: 特定の問題番号または記述的なタグを使用してホットフィックスブランチを自動的に作成する, パッチのリリース確認プロセスを簡素化する, 開発者がホットフィックスの品質チェックとPRの作成を実行するためのガイダンスを提供する.

Which IDEs are compatible with hotfix?

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 hotfix?

GitおよびGitHubの設定が必要. 'gh auth status'が成功して認証される必要がある. 'git status --short'が空で、'main'ブランチが存在する必要がある.

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 akiojin/llmlb/hotfix. 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 hotfix 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

hotfix

Install hotfix, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

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

Hotfix Workflow

本番障害向けのホットフィックスフローを開始し、hotfix/* ブランチ作成からパッチリリース確認までを案内する。

Preflight

  • git status --short が空であること
  • main ブランチが存在すること
  • gh auth status が成功すること

実行内容

  1. 前提条件チェック
  2. main から hotfix/* ブランチ作成
  3. 修正・品質チェック・PR作成・リリース確認の手順提示

使用方法

パターンA: Issue番号を指定

bash
1./scripts/release/create-hotfix.sh 42 2# -> hotfix/42

パターンB: 説明を指定

bash
1./scripts/release/create-hotfix.sh fix-critical-bug 2# -> hotfix/fix-critical-bug

パターンC: 対話式

bash
1./scripts/release/create-hotfix.sh

修正後の流れ

bash
1# 1) 修正実装 2git add . 3git commit -m "fix: 緊急修正の説明" 4 5# 2) 品質チェック 6make quality-checks 7 8# 3) プッシュ + PR 9git push -u origin hotfix/xxx 10gh pr create --base main --head hotfix/xxx \ 11 --title "fix: 緊急修正の説明" \ 12 --label "hotfix,auto-merge" 13 14# 4) リリース確認 15gh release view

注意

  • 緊急修正以外の変更を含めない
  • Conventional Commits で fix: プレフィックスを使う
  • main マージ後はパッチ版(例: v1.2.4)が自動作成される

関連スキル

Looking for an alternative to hotfix 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
開発者