Claude Code Plugins

Community-maintained marketplace

Feedback

debugging-with-tools

@rozwer/cross2B-Pro
0
0

Use for investigation-heavy work. Prefer tool-driven evidence (search, logs, diffs) before changing code.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name debugging-with-tools
description Use for investigation-heavy work. Prefer tool-driven evidence (search, logs, diffs) before changing code.

Workflow

  1. Confirm the symptom and collect a single source of truth (error output/log).
  2. Search the codebase for the error string / endpoint / symbol.
  3. Trace control flow (entrypoint → callers → side effects).
  4. Inspect configuration and environment assumptions.
  5. Make one change at a time and re-check the symptom.

Tooling checklist

  • rg for string/symbol search
  • git diff / git status for change review
  • Minimal, focused test/run commands