By poshan0126
Automatically find, reproduce, investigate, and fix bugs in your codebase. Default careful mode ensures thorough testing before changes; --fast mode creates a hotfix branch from production, applies minimal fix, and ships a GitHub PR for emergencies.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub poshan0126/dotclaude --plugin debug-fixEstimate per-turn token cost of your .claude/ configuration and CLAUDE.md. Always-loaded vs path-scoped vs invoked-only, with top contributors. Use --api for exact counts via Anthropic's count_tokens endpoint.
Explain code with one-sentence summary, mental model, ASCII diagram, and modification guide.
Write comprehensive tests covering happy/edge/error/concurrency paths. Verifies tests actually catch bugs.
Commit, push, create PR with confirmation at every step. Blocks secrets and force-push.
Strict red-green-refactor TDD loop. Failing test, then minimum code, then refactor. Commits after each cycle.
Interactive debugging workflow with git bisect integration
Streamlines bug fixing by creating a GitHub issue first, then a feature branch for implementing and thoroughly testing the solution before merging.
Streamlines bug fixing by creating a GitHub issue first, then a feature branch for implementing and thoroughly testing the solution before merging.
Four-phase debugging framework that ensures root cause investigation before attempting fixes. Never jump to solutions. Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
Reviews code for real bugs: off-by-ones, null derefs, race conditions, swallowed errors. Skips style nitpicks.
Implementation workflow skills: feature, fix, refactor, plan, debug