| name | bug-hunter |
| description | Systematically finds and fixes bugs using proven debugging techniques. Traces from symptoms to root cause, implements fixes, and prevents regression. |
| category | Document Processing |
| source | antigravity |
| tags | ["javascript","node","markdown","api","ai","template","document","rag"] |
| url | https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/bug-hunter |
Bug Hunter
Systematically hunt down and fix bugs using proven debugging techniques. No guessing—follow the evidence.
When to Use This Skill
- User reports a bug or error
- Something isn't working as expected
- User says "fix the bug" or "debug this"
- Intermittent failures or weird behavior
- Production issues need investigation
The Debugging Process
1. Reproduce the Bug
First, make it happen consistently:
1. Get exact steps to reproduce
2. Try to reproduce locally
3. Note what triggers it
4. Document the error message/behavior
5. Check if it happens every time or randomly
If you can't reproduce it, gather more info:
- What environment? (dev, staging, prod)
- What browser/device?
- What user actions preceded it?
- Any error logs?
2. Gather Evidence
Collect all available information:
Check logs:
tail -f logs/app.log
journalctl -u myapp -f
Check error messages:
- Full stack trace
- Error type and message
- Line numbers
- Timestamp
Check state:
- What data was being processed?
- What was the user trying to do?
- What's in the database?
- What's in local storage/cookies?
3. Form a Hypothesis
Based on evidence, guess what's wrong:
"The login times out because the session cookie
expires before the auth check completes"
"The form fails because email validation regex
doesn't handle plus signs"
"The API returns 500 because the database query
has a syntax error with special characters"
4. Test the Hypothesis
Prove or disprove your guess:
Add logging:
console.log('Before API call:', userData);
const response = await api.login(userData);
console.log('After API call:', response);
Use debugger:
debugger;
const result = processData(input);
Isolate the problem:
const result = { mock: 'data' };
5. Find Root Cause
Trace back to the actual problem:
Common root causes:
- Null/undefined values
- Wrong data types
- Race conditions
- Missing error handling
- Incorrect logic
- Off-by-one errors
- Async/await issues
- Missing validation
Example trace:
Symptom: "Cannot read property 'name' of undefined"
↓
Where: user.profile.name
↓
Why: user.profile is undefined
↓
Why: API didn't return profile
↓
Why: User ID was null
↓
Root cause: Login didn't set user ID in session
6. Implement Fix
Fix the root cause, not the symptom:
Bad fix (symptom):
const name = user?.profile?.name || 'Unknown';
Good fix (root cause):
const login = async (credentials) => {
const user = await authenticate(credentials);
if (user) {
session.userId = user.id;
return user;
}
throw new Error('Invalid credentials');
};
7. Test the Fix
Verify it actually works:
1. Reproduce the original bug
2. Apply the fix
3. Try to reproduce again (should fail)
4. Test edge cases
5. Test related functionality
6. Run existing tests
8. Prevent Regression
Add a test so it doesn't come back:
test('login sets user ID in session', async () => {
const user = await login({ email: 'test@example.com', password: 'pass' });
expect(session.userId).toBe(user.id);
expect(session.userId).not.toBeNull();
});
Debugging Techniques
Binary Search
Cut the problem space in half repeatedly:
console.log('CHECKPOINT 1');
console.log('CHECKPOINT 2');
console.log('CHECKPOINT 3');
Rubber Duck Debugging
Explain the code line by line out loud. Often you'll spot the issue while explaining.
Print Debugging
Strategic console.logs:
console.log('Input:', input);
console.log('After transform:', transformed);
console.log('Before save:', data);
console.log('Result:', result);
Diff Debugging
Compare working vs broken:
- What changed recently?
- What's different between environments?
- What's different in the data?
Time Travel Debugging
Use git to find when it broke:
git bisect start
git bisect bad
git bisect good abc123
Common Bug Patterns
Null/Undefined
const name = user.profile.name;
const name = user?.profile?.name || 'Unknown';
if (!user || !user.profile) {
throw new Error('User profile required');
}
const name = user.profile.name;
Race Condition
let data = null;
fetchData().then(result => data = result);
console.log(data);
const data = await fetchData();
console.log(data);