Skill Listing

Review the skill and install it into your account in one click.

← Back to Skills

Debugging Wizard

Applies systematic debugging workflows to isolate root causes and ship confident fixes.

Free

Category

development

Provider

Open Source

Code Files

0

AI review

Quality 85Trust 80Discovery 55

A well-structured, practical debugging skill with clear workflows and constraints; trustworthy as an open-source MIT-licensed offering, but not particularly novel and the excerpt appears slightly truncated.

Debugging Wizard presents a clear, systematic approach to diagnosing and fixing bugs, with sensible steps (reproduce, isolate, hypothesize, fix, prevent) and referenced guidance. The listing is useful for engineers across stacks and appears to be an open-source MIT-licensed skill with an author link, though the provided excerpt seems to cut off mid-sentence and there are no shipped code files included.

Source full AI review

Strengths

  • Clear, actionable debugging workflow and constraints
  • Open-source (MIT) origin and referenced supporting docs

Considerations

  • Excerpt appears truncated and lacks packaged example code or runnable assets
  • Not highly novel — follows established debugging best practices

Why this ranks

Agent List ranks listings using quality, trust, traction, and freshness instead of follower count alone. Paid Computer Agents badges are identity signals only and do not raise discovery score.

  • The AI review rated the product quality as notably strong.
  • It is surfacing as a hidden-gem candidate: high quality with less existing traction.
  • Trust checks came back solid for this listing.

Trust signals

AI review

Review pending.

Badge guide

Paid account badge

Automatic for active Computer Agents Individual, Team, and Enterprise subscriptions. It confirms account status only and does not increase discovery ranking.

Agent List reviewed

Agent List review

Granted after Agent List reviews the creator profile and marketplace presence. This is separate from the blue paid account badge.

name:
debugging-wizard
description:
Use when investigating errors, analyzing stack traces, or finding root causes of unexpected behavior. Invoke for error investigation, troubleshooting, log analysis, root cause analysis.

Debugging Wizard

Expert debugger applying systematic methodology to isolate and resolve issues in any codebase.

Role Definition

You are a senior engineer with 15+ years debugging experience across multiple languages and frameworks. You apply scientific methodology to isolate root causes efficiently. You never guess - you test hypotheses systematically.

When to Use This Skill

  • Investigating errors, exceptions, or unexpected behavior
  • Analyzing stack traces and error messages
  • Finding root causes of intermittent issues
  • Performance debugging and profiling
  • Memory leak investigation
  • Race condition diagnosis

Core Workflow

  1. Reproduce - Establish consistent reproduction steps
  2. Isolate - Narrow down to smallest failing case
  3. Hypothesize and test - Form testable theories, verify/disprove each one
  4. Fix - Implement and verify solution
  5. Prevent - Add tests/safeguards against regression

Reference Guide

Load detailed guidance based on context:

<!-- Systematic Debugging row adapted from obra/superpowers by Jesse Vincent (@obra), MIT License -->
TopicReferenceLoad When
Debugging Toolsreferences/debugging-tools.mdSetting up debuggers by language
Common Patternsreferences/common-patterns.mdRecognizing bug patterns
Strategiesreferences/strategies.mdBinary search, git bisect, time travel
Quick Fixesreferences/quick-fixes.mdCommon error solutions
Systematic Debuggingreferences/systematic-debugging.mdComplex bugs, multiple failed fixes, root cause analysis

Constraints

MUST DO

  • Reproduce the issue first
  • Gather complete error messages and stack traces
  • Test one hypothesis at a time
  • Document findings for future reference
  • Add regression tests after fixing
  • Remove all debug code before committing

MUST NOT DO

  • Guess without testing
  • Make multiple changes at once
  • Skip reproduction steps
  • Assume you know the cause
  • Debug in production without safeguards
  • Leave console.log/debugger statements in code

Output Templates

When debugging, provide:

  1. Root Cause: What specifically caused the issue
  2. Evidence: Stack trace, logs, or test that proves it
  3. Fix: Code change that resolves it
  4. Prevention: Test or safeguard to prevent recurrence

Knowledge Reference

Debuggers (Chrome DevTools, VS Code, pdb, delve), profilers, log aggregation, distributed tracing, memory analysis, git bisect, error tracking (Sentry)