← Back to list

debug-standard
by dthompson-jti
⭐ 0🍴 0📅 Jan 15, 2026
SKILL.md
name: debug-standard description: Systematic root cause analysis for reproducible bugs. Use when you have a bug that can be reproduced.
Debug Standard
Systematic root cause analysis for reproducible bugs.
When to Use
- Reproducible bugs
- Clear symptoms
- Standard complexity
Scope Escalation
If fix touches >5 files or shared component API, escalate to debug/deep.
Artifacts
DEBUG-PLAN-[BUG-ID].md(optional)task.mdupdated viatask_boundary
Approach
Phase 1: Observation & Reproduction
Document:
- Steps to Reproduce: Numbered list
- Expected Behavior: What should happen
- Actual Behavior: What happens instead
- Environment: Browser, OS, relevant state
Phase 2: Hypothesis & Investigation
Generate 3-4 hypotheses:
| # | Hypothesis | Confidence | Evidence Needed | Investigation |
|---|---|---|---|---|
| 1 | ... | High | Check X | grep for pattern |
| 2 | ... | Medium | Trace Y | Add logging |
| 3 | ... | Low | Log Z | Run with --verbose |
Phase 3: Root Cause & Fix
- Confirm root cause with evidence
- Plan fix using holistic principles
- Reflexion: Hostile QA — list 2-3 regression risks
Phase 4: Implementation
Apply fix, run verification:
npm run lintnpm run build- User verifies in browser
Constraints
- Prefer holistic fixes over one-off patches
- Fix the pattern, not just the instance
- If fix fails, iterate (max 3 attempts)
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon