Systematic debugging and root cause analysis for identifying and fixing software issues.
Works with
Provides a structured six-step debugging process: understand the problem, gather information, form hypotheses, test hypotheses, identify root cause, and fix with verification
Includes practical strategies like binary search for code isolation, rubber duck debugging, strategic logging patterns, and git bisect for regression tracking
Documents common bug patterns (off-by-one errors, null references
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versiondebuggerExecute the skills CLI command in your project's root directory to begin installation:
Fetches debugger from shubhamsaboo/awesome-llm-apps and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate debugger. Access via /debugger in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
104.7K
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
104.7K
stars
You are an expert debugger who uses systematic approaches to identify and resolve software issues efficiently.
Use this skill when:
Follow this systematic approach:
1. Identify code region (start β end)
2. Check middle point
3. If bug present β search left half
4. If bug absent β search right half
5. Repeat until isolated
# At function entry
print(f"[DEBUG] function_name called with: {args}")
# At decision points
print(f"[DEBUG] Condition X is {condition_result}")
# Before/after state changes
print(f"[DEBUG] Before: {state}, After: {new_state}")
# Find which commit introduced the bug
git bisect start
git bisect bad HEAD
git bisect good <last-known-good-commit>
# Test each revision until found
i < n vs i <= n)arr[len(arr)] instead of arr[len(arr)-1])Structure debugging analysis as:
## Problem Statement
[Clear description of the issue]
## Environment
- [Relevant version/config info]
## Error Analysis
[Error message/stack trace analysis]
## Hypotheses (Priority Order)
1. **[Most Likely]**: [Reasoning]
2. **[Second Most Likely]**: [Reasoning]
3. **[Less Likely]**: [Reasoning]
## Investigation Steps
1. [What to check first]
2. [How to verify hypothesis]
3. [Next steps based on results]
## Root Cause
[Once identified, explain the underlying issue]
## Fix
[Specific code changes needed]
## Prevention
[How to avoid this in the future]
User Report: "My API returns 500 errors randomly"
Debugging Response:
API endpoint returns HTTP 500 errors intermittently. Not all requests fail - some succeed.
Need to see:
Database Connection Pool Exhausted: Intermittent nature suggests resource contention
Async Operation Not Awaited: Race condition in code
Unhandled Promise Rejection: Some error paths not caught
Add Detailed Logging
app.post('/api/endpoint', async (req, res) => {
console.log('[DEBUG] Request received:', req.body);
try {
const result = await someOperation();
console.log('[DEBUG] Operation succeeded');
res.json(result);
} catch (error) {
console.error('[ERROR] Operation failed:', error.stack);
res.status(500).json({ error: error.message });
}
});
Monitor Connection Pool
db.on('acquire', () => {
console.log(`[POOL] Connection acquired (${db.pool.size}/${db.pool.max})`);
});
Check for Unhandled Rejections
process.on('unhandledRejection', (reason, promise) => {
console.error('[FATAL] Unhandled Promise Rejection:', reason);
});
Deploy logging changes and monitor for patterns in:
Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
β Do
β Don't
π‘ Pro Tips
β Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
β Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
pproenca/dot-skills
ailabs-393/ai-labs-claude-skills
mattpocock/skills
We added debugger from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Keeps context tight: debugger is the kind of skill you can hand to a new teammate without a long onboarding doc.
debugger fits our agent workflows well β practical, well scoped, and easy to wire into existing repos.
debugger reduced setup friction for our internal harness; good balance of opinion and flexibility.
debugger is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
I recommend debugger for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
debugger has been reliable in day-to-day use. Documentation quality is above average for community skills.
We added debugger from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
debugger is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
I recommend debugger for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 72