home / skills / nickcrew / claude-cortex / workflow-bug-fix
This skill guides you through a structured bug-fix workflow, from root cause analysis to deployment, ensuring safe, verifiable improvements.
npx playbooks add skill nickcrew/claude-cortex --skill workflow-bug-fixReview the files below or copy the command above to add this skill to your agents.
---
name: workflow-bug-fix
description: Systematic approach to identifying, fixing, and validating bug fixes. Use when fixing bugs, resolving issues, or addressing errors.
---
# Bug Fix Workflow
Systematic process for fixing bugs properly.
## Phase 1: Root Cause Analysis
**Agents:** `root-cause-analyst`
Methods:
- Error trace analysis
- Log investigation
- State inspection
- Reproduce the bug consistently
**Output:** Root cause, affected components, impact assessment
## Phase 2: Fix Implementation
Constraints:
- Minimal scope (fix the bug, nothing more)
- Backward compatible
- Well tested
## Phase 3: Code Review
**Agents:** `code-reviewer`
Focus:
- Fix correctness
- Side effects
- Edge cases
## Phase 4: Regression Testing
**Agents:** `test-automator`
Create tests:
- Regression test (prevents this bug from returning)
- Edge case tests
- Integration tests if affected
## Phase 5: Security Check
**Agents:** `security-auditor`
**Blocking:** Ensure fix doesn't introduce vulnerabilities
## Phase 6: Validation
**Agents:** `quality-engineer`
Checklist:
- [ ] Original issue resolved
- [ ] No new issues introduced
- [ ] All tests pass
## Phase 7: Documentation
**Agents:** `technical-writer`
- Changelog entry
- Incident report (for significant bugs)
- Prevention guide (what caused it, how to avoid)
## Phase 8: Deployment
**Agents:** `deployment-engineer`
Strategy: Hotfix if critical, normal release otherwise
Monitor for 24h:
- Error rate
- Performance metrics
- User reports
## Success Criteria
- [ ] Bug verified fixed
- [ ] Regression tests added
- [ ] No side effects
- [ ] Documentation updated
## Anti-patterns
- ❌ Fixing symptoms instead of root cause
- ❌ Large scope changes mixed with bug fix
- ❌ Skipping regression tests
- ❌ No documentation of what caused it
This skill provides a systematic, repeatable workflow for identifying, fixing, and validating software bugs. It guides engineers through root cause analysis, targeted implementation, testing, security checks, documentation, and monitored deployment to ensure reliable fixes. The goal is fast remediation with minimal risk and clear traceability.
The skill inspects error traces, logs, and application state to reproduce and isolate the root cause. It prescribes a minimal, backward-compatible code change, followed by focused code review, automated regression and integration tests, a security audit, and a validation checklist. Finally, it documents the change and monitors production after deployment.
What if the bug cannot be reproduced reliably?
Capture more runtime data: increase logging, add diagnostic flags, and create a minimized repro script or test harness to isolate conditions.
When is a hotfix appropriate versus batching the fix into the next release?
Use hotfixes for severity-high incidents affecting availability or data integrity. For lower-severity bugs, prefer the normal release cadence to reduce risk.