debugger

Solid

Debugging specialist for root cause analysis and problem resolution

Code & Development 60 stars 8 forks Updated 2 months ago MIT

Install

View on GitHub

Quality Score: 84/100

Stars 20%
59
Recency 20%
75
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Debugger Skill > **Director Mode Lite** - Debugging Specialist --- ## Role You are a **debugging specialist** focused on systematic root cause analysis and problem resolution. ## Debugging Methodology ### 5-Step Debug Process ``` 1. REPRODUCE → Confirm the bug exists 2. ISOLATE → Narrow down the scope 3. IDENTIFY → Find the root cause 4. FIX → Apply the solution 5. VERIFY → Confirm the fix works ``` ## Step 1: Reproduce Before debugging, confirm: - [ ] Can reproduce the issue - [ ] Have clear steps to reproduce - [ ] Know expected vs actual behavior - [ ] Have relevant error messages/logs ## Step 2: Isolate Narrow down the problem: - [ ] Which file(s) are involved? - [ ] Which function(s) are involved? - [ ] When did it start? (git bisect) - [ ] What changed recently? ## Step 3: Identify Find the root cause: ### Common Bug Patterns | Pattern | Signs | Common Fix | |---------|-------|------------| | Null/Undefined | `Cannot read property of undefined` | Add null checks | | Off-by-one | Loop runs one too many/few times | Check loop bounds | | Race condition | Intermittent failures | Add synchronization | | Type coercion | `"1" + 1 = "11"` | Explicit type conversion | | Async issues | `Promise { <pending> }` | Await/handle promises | ### Investigation Tools ```bash # Search for error message grep -r "error message" src/ # Find recent changes git log --oneline -20 git diff HEAD~5 # Check specific function grep -r "functionName" src/ ``` ## S...

Details

Author
claude-world
Repository
claude-world/director-mode-lite
Created
4 months ago
Last Updated
2 months ago
Language
Shell
License
MIT

Integrates with

Related Skills

Code & Development Featured

code-reviewer

Analyzes code diffs and files to identify bugs, security vulnerabilities (SQL injection, XSS, insecure deserialization), code smells, N+1 queries, naming issues, and architectural concerns, then produces a structured review report with prioritized, actionable feedback. Use when reviewing pull requests, conducting code quality audits, identifying refactoring opportunities, or checking for security issues. Invoke for PR reviews, code quality checks, refactoring suggestions, review code, code quality. Complements specialized skills (security-reviewer, test-master) by providing broad-scope review across correctness, performance, maintainability, and test coverage in a single pass.

9,342 Updated 5 days ago
Jeffallan
Code & Development Featured

security-reviewer

Identifies security vulnerabilities, generates structured audit reports with severity ratings, and provides actionable remediation guidance. Use when conducting security audits, reviewing code for vulnerabilities, or analyzing infrastructure security. Invoke for SAST scans, penetration testing, DevSecOps practices, cloud security reviews, dependency audits, secrets scanning, or compliance checks. Produces vulnerability reports, prioritized recommendations, and compliance checklists.

9,342 Updated 5 days ago
Jeffallan
Code & Development Featured

parallel-investigation

Coordinates parallel investigation threads to simultaneously explore multiple hypotheses or root causes across different system areas. Use when debugging production incidents, slow API performance, multi-system integration failures, or complex bugs where the root cause is unclear and multiple plausible theories exist; when serial troubleshooting is too slow; or when multiple investigators can divide root-cause analysis work. Provides structured phases for problem decomposition, thread assignment, sync points with Continue/Pivot/Converge decisions, and final report synthesis.

745 Updated 1 months ago
rohitg00