Most agents 'debug' by printing. This skill actually attaches a debugger (delve, debugpy, gdb) and exposes step/continue/inspect to Claude. Useful for nasty bugs where 'add a log' loops forever.
أضف إلى context_servers. يعيد Zed التحميل تلقائيًا عند الحفظ.
claude mcp add debug-skill -- git clone https://github.com/AlmogBaku/debug-skill ~/.claude/skills/debug-skill
أمر من سطر واحد. تحقق باستخدام claude mcp list. احذف باستخدام claude mcp remove.
حالات الاستخدام
استخدامات عملية: Debug Skill
Find the nil deref a print loop can't catch
👤 Backend devs⏱ ~15 minintermediate
متى تستخدمه: A specific input causes a panic and you can't see where without a debugger.
المتطلبات الأساسية
Server/skill installed and authenticated — See repo README
الخطوات
Reproduce under debugger
Using the debug skill, run main_test.go::TestPanicCase under delve with a breakpoint at the panic frame.✓ تم النسخ
→ Process paused at the panic
Inspect
Print locals and the call chain. Show me which variable is nil.✓ تم النسخ
→ Variable value + caller chain
النتيجة: Bug located, not guessed.
المزالق
Breakpoints by symbol can match multiple methods in Go interfaces — Breakpoints by symbol can match multiple methods in Go interfaces — qualify with the package path.
التكلفة والحدود
تكلفة التشغيل
حصة API
See provider docs for rate limits
الرموز لكل استدعاء
Varies by tool
التكلفة المالية
See repo README for pricing details
نصيحة
Cache tool results and avoid repeated identical calls.
الأمان
الصلاحيات والأسرار ونطاق الأثر
تخزين بيانات الاعتماد: Use environment variables; never commit secrets
نقل البيانات الخارجي: Tool calls go to the provider's API as documented
استكشاف الأخطاء
الأخطاء الشائعة وحلولها
delve not found
Install delve: go install github.com/go-delve/delve/cmd/dlv@latest.
تحقق: dlv version
debugger detaches randomly
Long pauses can hit the IDE's heartbeat. Use the skill's --no-heartbeat option for slow flows.