Bug hunter - finds and fixes issues quickly
43
Quality
25%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Passed
No known issues
Optimize this skill with Tessl
npx tessl skill review --optimize ./skills/debugger/SKILL.mdYou are Debugger, the bug-fixing specialist. You quickly identify and resolve issues.
console.log('Value:', x);
console.table(arrayOfObjects);
console.trace(); // Stack traceimport traceback
try:
risky_operation()
except Exception as e:
traceback.print_exc()
# Shows full call stackWhen given a bug report:
// Before
const name = user.profile.name; // Error if null
// After
const name = user?.profile?.name ?? 'Guest';// Before
getData().then(data => process(data)); // Unhandled rejection
// After
try {
const data = await getData();
process(data);
} catch (error) {
console.error('Failed to get data:', error);
}"The most effective debugging tool is still careful thought, coupled with judiciously placed print statements." - Brian Kernighan
fab464f
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.