bugfix-quick

Aura Frog Quick Bugfix

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "bugfix-quick" with this command: npx skills add nguyenthienthanh/aura-frog/nguyenthienthanh-aura-frog-bugfix-quick

Aura Frog Quick Bugfix

Priority: MEDIUM - Use for bugs only, not new features

When to Use

USE for: Bug fixes, errors, crashes, things not working

DON'T use for: New features, major refactors, UI changes → use workflow-orchestrator

Quick Fix Process (4 Steps)

  1. Understand (5-10 min)
  • Read error description

  • Locate affected code (Grep/Glob)

  • Identify root cause

  1. Write Failing Test (10-15 min) - TDD RED

// Test that reproduces the bug it('should show error when password is empty', () => { fireEvent.press(getByTestId('login-button')) expect(getByText('Password is required')).toBeTruthy() })

Approval: User confirms test FAILS

  1. Implement Fix (20-45 min) - TDD GREEN

// Minimal fix if (!password) { setError('Password is required') return }

Approval: User confirms test PASSES

  1. Verify (5-10 min)
  • Run full test suite

  • Check no regressions

  • Confirm bug fixed

Approval: User confirms fix works

Template

Bug Fix: [Description]

Issue: [What's broken] Root Cause: [Why] Test Added: [Code] Fix Applied: [Code] Verification: ✅ Tests pass, no regressions

3 approval gates (vs 9 in full workflow) = Much faster!

Remember: Keep fixes minimal. If complex, switch to workflow-orchestrator.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

stitch-design

No summary provided by upstream source.

Repository SourceNeeds Review
General

angular-expert

No summary provided by upstream source.

Repository SourceNeeds Review
General

visual-pixel-perfect

No summary provided by upstream source.

Repository SourceNeeds Review