Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める$pwd:
systematic-debugging
// Systematic debugging - four-phase process, find root cause before fixing
$ git log --oneline --stat
stars:683
forks:78
updated:2026年3月3日 07:02
SKILL.md
// Systematic debugging - four-phase process, find root cause before fixing
| name | systematic-debugging |
| description | Systematic debugging - four-phase process, find root cause before fixing |
Random fixes waste time and create new bugs.
Core principle: ALWAYS find root cause before attempting fixes.
NO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRST
NO INVESTIGATION WITHOUT MEMORY RECALL FIRST
ALL of these mean: STOP. Return to Phase 1.
| Phase | Key Activities | Success Criteria |
|---|---|---|
| 0. Memory Recall | Extract keywords, query memory | Output recall summary |
| 1. Root Cause | Read errors, reproduce, gather evidence | Understand WHAT and WHY |
| 2. Pattern | Find working examples, compare | Identify differences |
| 3. Hypothesis | Form theory, test minimally | Confirmed or new hypothesis |
| 4. Implementation | Create test, fix, verify | Bug resolved, tests pass |
Project knowledge accumulation system - learn from practice, avoid repeating mistakes
File-based planning for complex tasks. Creates task_plan.md, findings.md, and progress.md. Use for multi-step tasks requiring >5 tool calls.
Session wrap-up - update handoff + commit + auto-record experience
Verification before completion - must run verification commands before claiming done. Evidence before claims.