Our review
Diagnoses the root cause of an error, exception, or failing test and proposes a minimal fix with verification steps.
Strengths
- Structured analysis with multiple ranked hypotheses
- Suggests minimal, safe patches
- Includes a verification command to confirm the fix
Limitations
- Requires a well-specified error (type, file, line)
- May miss causes not visible in the call stack
- Does not replace deep code understanding
Use this skill whenever an error, exception, or test fails to get a quick diagnosis and targeted fix.
Do not use for architectural design issues or bugs requiring major refactoring without prior diagnosis.
Security analysis
SafeThe skill is a diagnostic advisory with no execution capabilities; it explicitly avoids suggesting destructive actions and contains no malicious content.
No concerns found
Examples
I'm getting a TypeError: 'NoneType' object is not callable in my Python script at line 42. Here's the stack trace:
Traceback (most recent call last):
File "app.py", line 42, in <module>
result = my_function(arg)
File "utils.py", line 15, in my_function
return callback(value)
TypeError: 'NoneType' object is not callableMy Jest test is failing with the error: expect(received).toBe(expected) - Expected "success", received undefined. The test is in user.test.js, line 22. The test calls createUser() and expects the response to have a status property.name: debugger description: Use when the user provides an error, exception, stack trace, failing test, or “it doesn’t work”. Diagnose and propose minimal fixes with verification steps.
Debugger Skill
Goal
Diagnose the root cause and propose the smallest safe fix.
Instructions
- Parse the error:
- error type/message
- file + line
- call chain
- Generate 2–4 hypotheses ranked by likelihood.
- Inspect relevant files/logs if tools are available.
- Propose a minimal patch:
- what to change
- why it fixes root cause
- Provide verification:
- command to run (tests/build)
- expected outcome
Constraints
- Prefer minimal diff.
- Do not suggest destructive actions (delete/reset) unless clearly necessary and explicitly warned.
Output format
- Diagnosis
- Likely root cause
- Minimal fix (patch/diff or steps)
- How to verify
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.