hotfix
Executes a hotfix workflow: creates a hotfix branch, applies the targeted fix, runs verification, and prepares release artifacts. Use when a critical production bug needs immediate patching or when the user mentions hotfix or emergency fix.
git clone --depth 1 https://github.com/tranhieutt/software_development_department /tmp/hotfix && cp -r /tmp/hotfix/.claude/skills/hotfix ~/.claude/skills/hotfixSKILL.md
When this skill is invoked: > **Explicit invocation only**: This skill should only run when the user explicitly requests it with `/hotfix`. Do not auto-invoke based on context matching. 1. **Assess the emergency** — Read the bug description or ID. Determine severity: - **S1 (Critical)**: Product 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 2. **Create the hotfix record** at `production/hotfixes/hotfix-[date]-[short-name].md`: ```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 user 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-engineer) - [ ] Release approved (producer) ### Rollback Plan [How to revert if the fix causes new issues] ``` 3. **Create the hotfix branch** (if git is initialized): ``` git checkout -b hotfix/[short-name] [release-tag-or-main] ``` 4. **Investigate and implement the fix** — Focus on the minimal change that resolves the issue. Do NOT refactor, clean up, or add features alongside the hotfix. 5. **Validate the fix** — Run targeted tests for the affected system. Check for regressions in adjacent systems. 6. **Update the hotfix record** with root cause, fix details, and test results. 6b. **Collect approvals** — Use the Task tool to request sign-off: - `subagent_type: lead-programmer` — Review the fix for correctness and side effects - `subagent_type: qa-engineer` — Run targeted regression tests on the affected system - `subagent_type: producer` — Approve deployment timing and communication plan 7. **Output a summary** with: severity, root cause, fix applied, testing status, and what approvals are still needed before deployment. ### Rules - Hotfixes must be the MINIMUM change to fix the issue — no cleanup, no refactoring, no "while we're here" changes - Every hotfix must have a rollback plan documented before deployment - Hotfix branches merge to BOTH the release branch AND the development branch - All hotfixes require a post-incident review within 48 hours - If the fix is complex enough to need more than 4 hours, escalate to technical-director for a scope decision ## Protocol - **Question**: Confirms severity (S1/S2 = proceed; S3+ = defer to normal workflow) - **Options**: Skip — severity drives path - **Decision**: User approves fix approach before implementation begins - **Draft**: Hotfix summary shown before committing fix - **Approval**: "May I write to `production/hotfixes/hotfix-[date]-[name].md`?" ## Output Deliver exactly: - **Hotfix summary**: severity, root cause (1 sentence), fix applied, files changed - **Rollback plan**: documented steps to revert if the fix causes regressions - **Approvals needed**: list of sign-offs still outstanding before deployment - **Post-incident review**: scheduled within 48 hours (link to `/postmortem-writing`)
The Accessibility Specialist ensures the software is accessible to the widest possible audience. They enforce accessibility standards, review UI for compliance, and design assistive features including remapping, text scaling, colorblind modes, and screen reader support.
The AI Programmer implements intelligent system features: recommendation engines, classification pipelines, LLM integrations, decision logic, and autonomous agent behavior. Use this agent for AI/ML feature implementation, model integration, intelligent automation, or AI system debugging.
The Analytics Engineer designs telemetry systems, user behavior tracking, A/B test frameworks, and data analysis pipelines. Use this agent for event tracking design, dashboard specification, A/B test design, or user behavior analysis methodology.
The Backend Developer builds and maintains server-side logic, APIs, databases, authentication, and integrations. Use this agent for REST/GraphQL API implementation, database operations, authentication systems, background jobs, microservices, server performance, and backend testing. Works from API design contracts and PRDs.
The Community Manager handles user-facing communications, feedback synthesis, support escalation, and community engagement. Use this agent for drafting release announcements, synthesizing user feedback into actionable insights, writing support documentation, or coordinating community-facing communication around releases and incidents.
The CTO (Chief Technical Officer) owns the high-level technical vision, architecture decisions, technology choices, and technical strategy. Use this agent for architecture-level decisions, technology evaluations, cross-system conflicts, and when a technical choice will constrain or enable product possibilities. This is the highest technical authority in the department.
The Data Engineer designs database schemas, builds data pipelines, manages migrations, and owns the data infrastructure. Use this agent for schema design, complex migrations, data modeling, ETL/ELT pipelines, database performance optimization, analytics infrastructure, and data integrity strategies.
The DevOps Engineer maintains build pipelines, CI/CD configuration, version control workflow, and deployment infrastructure. Use this agent for build script maintenance, CI configuration, branching strategy, or automated testing pipeline setup.