adopt
Brownfield onboarding — audits existing project artifacts for template format compliance (not just existence), classifies gaps by impact, and produces a…
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.
$ npx -y skills add Donchitos/Claude-Code-Game-Studios --skill hotfix --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/hotfixContext preview
The summary Claude sees to decide when to auto-load this skill.
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.
name: hotfix description: "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." argument-hint: "[bug-id or description]" user-invocable: true allowed-tools: Read, Glob, Grep, Write, Edit, Bash, Task, AskUserQuestion model: sonnet
> **Explicit invocation only**: This skill should only run when the user explicitly requests it with `/hotfix`. Do not auto-invoke based on context matching.
Read the bug description or ID. Assess severity using these criteria:
Confirm with `AskUserQuestion`:
If [C]: stop. Verdict: **REDIRECTED** — use the normal bug fix workflow for S3 and below.
---
Draft the hotfix record:
## 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.
---
Check whether this is a git repository:
`Bash: git rev-parse --is-inside-work-tree 2>/dev/null`
If this command fails or returns empty: note "Not a git repository — create the branch manually." and skip branch creation.
If the check passes, use `AskUserQuestion` before creating the branch:
Only run `git checkout -b hotfix/[short-name] [base-ref]` if user selects [A]. If [B]: ask the user for the base ref, then run the command with that ref. If [C]: skip branch creation and proceed to Phase 4.
---
Focus on the minimal change that resolves the issue. Do NOT refactor, clean up, or add features alongside the hotfix.
Validate the fix by running targeted tests for the affected system. Check for regressions in adjacent systems.
Update the hotfix record with root cause, fix details, and test results.
---
Use the Task tool to request sign-off in parallel:
All three must return APPROVE before proceeding. If any returns CONCERNS or REJECT, do not deploy — surface the issue and resolve it first.
---
After approvals, determine the QA scope required before deploying the hotfix. Spawn `qa-lead` via Task with:
Ask qa-lead: **Is a full smoke check sufficient, or does this fix require a targeted team-qa pass?**
Apply the verdict:
Do not skip this gate. A hotfix that breaks something else is worse than the original bug.
---
Update the original bug file if one exists:
## Fix Record **Fixed in**: hotfix/[branch-name] — [commit hash or description] **Fixed date**: [date] **Status**: Fixed — Pending Verification
Set `**Status**: Fixed — Pending Verification` in the bug file header.
Output a deployment summary:
## Hotfix Ready to Deploy: [short-name] **Severity**: [S1/S2] **Root cause**: [one line] **Fix**: [one line] **QA gate**: [Smoke check PASS / Team-QA APPROVED] **Approvals**: lead-programmer ✓ / qa-tester ✓ / producer ✓ **Rollback plan**: [from Phase 2 record] Merge to: release branch AND development branch Next: /bug-report verify [BUG-ID] after deploy to confirm resolution
---
After deploying, run `/bug-report verify [BUG-ID]` to confirm the fix resolved the issue in the deployed build.
If VERIFIED FIXED: run `/bug-report close [BUG-ID]` to formally close it. If STILL PRESENT: the hotfix failed — immediately re-open, assess rollback, and escalate.
S
Turn Claude Code into a full game dev studio — 49 AI agents, 72 workflow skills, and a complete coordination system mirroring real studio hierarchy.
Repo: Donchitos/Claude-Code-Game-Studios
Brownfield onboarding — audits existing project artifacts for template format compliance (not just existence), classifies gaps by impact, and produces a…
Creates an Architecture Decision Record (ADR) documenting a significant technical decision, its context, alternatives considered, and consequences. Every major…
Validates completeness and consistency of the project architecture against all GDDs. Builds a traceability matrix mapping every GDD technical requirement to…
Guided, section-by-section Art Bible authoring. Creates the visual identity specification that gates all asset production. Run after /brainstorm is approved…
Audits game assets for compliance with naming conventions, file size budgets, format standards, and pipeline requirements. Identifies orphaned assets, missing…
Generate per-asset visual specifications and AI generation prompts from GDDs, level docs, or character profiles. Produces structured spec files and updates the…