name: hotfix description: | Quick fix for superficial bugs: typos, CSS issues, config errors, off-by-one, wrong variable name, missing import, broken link. Use when the root cause is obvious and the fix is 1-2 files max. Trigger: "hotfix", "quick fix", "typo", "fix this small thing", "c'est juste un petit bug", "patch rapide". Do NOT use for bugs requiring investigation — use /bugfix instead. argument-hint: disable-model-invocation: false allowed-tools:
Fast-track fix for obvious bugs. No planning overhead, no plugin check, no subagents. Get in, fix, verify, get out.
$ARGUMENTS
Find the bug. Use the description and any error message to go straight to the source:
git status
git log --oneline -3
/bugfix <description>
for a structured investigation."Apply the minimal change that fixes the bug:
If tests exist for the affected code, run them:
# detect and run relevant tests
If a build step exists, verify it still passes.
Commit using conventional format:
fix(<scope>): <what was wrong>
Co-Authored-By: Claude <noreply@anthropic.com>
Print summary:
HOTFIX APPLIED
FILE(S) : <changed files>
FIX : <one-line description>
VERIFIED: <test name or manual check>
/bugfix./bugfix.