hotfix

Confirm P0 status, cut a worktree, cherry-pick commits, and merge into the integration branch.

2|Updated Feb 2, 2026
One-click install
npx skills add https://github.com/tobilafinhangit/skill-master --skill hotfix-tobilafinhangit
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: hotfix
Source: https://github.com/tobilafinhangit/skill-master/tree/main/.agent/skills/hotfix
Command: npx skills add https://github.com/tobilafinhangit/skill-master --skill hotfix-tobilafinhangit

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires git, github-cli, and includes scripts (resource) and references (resource) components.

What problem does it solve?

Hotfix Skill allows for urgent issue fixes to be applied directly to the main branch, avoiding the typical QA stages and speeding up production deployments.

Core Features & Use Cases

  • Urgent Fix Deployment: Quickly apply fixes to live production issues by cutting a worktree from the main branch and cherry-picking to the integration branch.
  • Safety Confirmation: Confirms P0 status before deploying, ensuring critical issues are addressed promptly.
  • Automated Branching: Automatically generates and manages branches for hotfixes.

Quick Start

Invoke: /hotfix --confirm

Frequently Asked Questions about hotfix

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy an urgent fix to the main branch while bypassing standard QA stages?

To deploy an urgent fix to the main branch while bypassing QA, this Skill confirms P0 status, cuts a git worktree, cherry-picks commits, and merges back into the integration branch for rapid production deployment.

What is the git workflow for cherry-picking urgent fixes into an integration branch?

The git workflow for cherry-picking urgent fixes involves cutting a worktree from the main branch, applying the necessary commits, and merging them back into the integration branch to resolve critical production issues quickly.

Do I need to use git worktrees for branch management during a hotfix?

Yes, you need to use git worktrees for branch management during a hotfix because the Skill utilizes them to isolate the urgent fix environment before cherry-picking commits into the main integration branch.

Can I automate the branching process for P0 production issues?

Yes, you can automate the branching process for P0 production issues as this Skill automatically generates and manages branches for hotfixes, requiring only the /hotfix --confirm command to initiate the workflow.

What is the best way to handle a critical production fix without disrupting the CI/CD pipeline?

The best way to handle a critical production fix without disrupting the CI/CD pipeline is confirming the P0 status, cutting a dedicated worktree, and cherry-picking the urgent fix directly to the integration branch.

When should I not use a hotfix workflow for urgent fixes?

You should not use a hotfix workflow for urgent fixes if the issue lacks confirmed P0 status, as this process specifically bypasses standard QA stages to speed up production deployments for critical issues only.