# Quick Fix

> Rapid bug fix workflow - diagnose, fix, test, and verify in one pass. Use for simple bugs that don't need full feature workflow.

- Skill: `advisely/quick-fix` (Agent Skill)
- Install (CLI): `npx skillmds@latest add advisely/quick-fix`
- Raw SKILL.md: https://api.skillmd.com/api/skills/advisely/quick-fix/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: advisely (https://skillmd.com/u/advisely)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/advisely/quick-fix

---


# Quick Fix Workflow

Fast-track workflow for simple bug fixes.

## Process

For bug: `$ARGUMENTS`

### 1. Diagnose (30 seconds)
- Locate the bug using Grep/Glob
- Read the relevant code
- Identify root cause

### 2. Fix (implement immediately)
- Apply minimal fix
- Don't refactor unrelated code
- Preserve existing patterns

### 3. Test (verify fix)
- Run relevant tests
- Verify the bug is fixed
- Check for regressions

### 4. Output
```
## Quick Fix Complete

**Bug**: [Description]
**Root Cause**: [What was wrong]
**Fix**: [What was changed]
**File(s)**: [Modified files]
**Tests**: [Pass/Fail status]
```

## When NOT to Use
- Complex bugs requiring architectural changes
- Bugs with unclear root cause
- Changes affecting multiple systems

For complex issues, use `/feature-workflow` instead.

