hotfix

Solid

Emergency fix workflow that bypasses normal sprint processes with a full audit trail. Creates hotfix branch, tracks approvals, and ensures the fix is backported correctly.

AI & Automation 20,555 stars 2999 forks Updated 1 weeks ago MIT

Install

View on GitHub

Quality Score: 97/100

Stars 20%
100
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

> **Explicit invocation only**: This skill should only run when the user explicitly requests it with `/hotfix`. Do not auto-invoke based on context matching. ## Phase 1: Assess Severity Read the bug description or ID. Determine severity: - **S1 (Critical)**: Game unplayable, data loss, security vulnerability — hotfix immediately - **S2 (Major)**: Significant feature broken, workaround exists — hotfix within 24 hours - If severity is S3 or lower, recommend using the normal bug fix workflow instead and stop. --- ## Phase 2: Create Hotfix Record Draft the hotfix record: ```markdown ## Hotfix: [Short Description] Date: [Date] Severity: [S1/S2] Reporter: [Who found it] Status: IN PROGRESS ### Problem [Clear description of what is broken and the player impact] ### Root Cause [To be filled during investigation] ### Fix [To be filled during implementation] ### Testing [What was tested and how] ### Approvals - [ ] Fix reviewed by lead-programmer - [ ] Regression test passed (qa-tester) - [ ] Release approved (producer) ### Rollback Plan [How to revert if the fix causes new issues] ``` Ask: "May I write this to `production/hotfixes/hotfix-[date]-[short-name].md`?" If yes, write the file, creating the directory if needed. --- ## Phase 3: Create Hotfix Branch If git is initialized, create the hotfix branch: ``` git checkout -b hotfix/[short-name] [release-tag-or-main] ``` --- ## Phase 4: Investigate and Implement Focus on the minimal change that resolves the issue. ...

Details

Author
Donchitos
Repository
Donchitos/Claude-Code-Game-Studios
Created
3 months ago
Last Updated
1 weeks ago
Language
Shell
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

hotfix

Set up the branch topology for a patch release against a previously tagged version: ensures release/<major>.<minor> exists from the source tag, then creates hotfix/<slug> off it. TRIGGER when the user says "hotfix v1.0.0", "patch the release", "I need to fix something in the v2 line", "create a hotfix branch", "/nyann:hotfix". Match phrases like "fix this for the previous release" or "backport this fix to v1.0". Do NOT trigger on "fix this bug" without a target tag — that's a regular feature branch via `/nyann:branch fix <slug>`. Do NOT trigger on "release a hotfix" if the user already has the branch set up — they're after `/nyann:release` directly.

5 Updated yesterday
thettwe
AI & Automation Solid

hotfix-triage

Urgent issue classification, root cause analysis, and fast-path routing for production hotfixes

1,160 Updated today
a5c-ai
Testing & QA Listed

fix

Use to drive a bug fix from first report through close, with a "why didn't we catch it?" loop at the end. Triggers — "/engineer.fix", "a bug came in", "this is broken", "a user reported X", "there's a defect", "we have a regression", "this needs a fix".

100 Updated 3 days ago
swingerman
AI & Automation Listed

fix

Fix bugs and issues — reproduce, find root cause, minimal fix with regression test. Use when something is broken.

304 Updated today
kdlbs
AI & Automation Listed

bug-fix

Bug fix workflow. Use when: fixing bugs, resolving issues, regression fixes. Not for: new features (use feature-dev), understanding code (use code-explore). Output: fix + regression test + review gate.

1 Updated today
hmj1026