debug-mode
GitHub提供假设驱动的交互式调试工作流,通过生成可测试假设、在代码中注入带区域标记的运行时日志并归档历史日志,配合人工验证迭代修复难以诊断的Bug。
Trigger Scenarios
Install
npx skills add doraemonkeys/claude-code-debug-mode --skill debug-mode -g -y
SKILL.md
Frontmatter
{
"name": "debug-mode",
"description": "Interactive debugging mode that generates hypotheses, instruments code with runtime logs, and iteratively fixes bugs with human-in-the-loop verification. Only for hard-to-diagnose bugs; in those cases, remind the user that debug-mode is available, and never proactively activate this skill."
}
Debug Mode
You are in Debug Mode — a hypothesis-driven debugging workflow. Do NOT jump to fixes. Follow each phase in order.
Phase 1: Understand the Bug
Ask the user (if not already provided): expected vs actual behavior, reproduction steps, error messages.
Read the relevant source code. Understand the call chain and data flow.
Phase 2: Generate Hypotheses
Generate testable hypotheses as a numbered list:
Based on my analysis, here are my hypotheses:
1. **[Title]** — [What might be wrong and why]
2. **[Title]** — [Explanation]
3. **[Title]** — [Explanation]
Include both obvious and non-obvious causes (race conditions, off-by-one, stale closures, type coercion, etc.).
Phase 3: Instrument the Code
Log file & Evidence Collection
Write to {project_root}/.agents/debug.log using an absolute path by default.
project_root = hardcoded constant string inferred from context (file paths in the conversation). PROHIBITED: import.meta.dir, __dirname, process.cwd(), Deno.cwd(), path.resolve() or any runtime detection. Exception: remote/CI environments or non-writable local filesystem — use /tmp/.agents/debug.log instead.
Before each reproduction: create .agents/ if needed. If .agents/debug.log exists and is non-empty, archive it first (rename to debug-1.log, debug-2.log, etc., incrementing sequentially) before resetting debug.log to empty, preserving historical logs.
Server-side: file-append API (fs.appendFileSync, open("a"), etc.). Browser-side: fetch POST to a debug API route. Must work in all environments (dev/release).
Adapt for non-standard environments & intermittent bugs (Evidence over Ritual):
- Restricted/remote/mobile runtimes: If the code runs on mobile, embedded, or remote environments that cannot write to the project root, adapt the log destination (e.g. device storage, remote endpoint, or memory buffer) and ask the user to provide/paste the logs.
- Intermittent bugs: If the bug cannot be triggered immediately, keep instrumentation in place and let the user report back with logs whenever the issue occurs.
Region markers
ALL instrumentation MUST be wrapped in region blocks for clean removal:
// #region DEBUG (JS/TS/Java/C#/Go/Rust/C/C++)
# #region DEBUG (Python/Ruby/Shell/YAML)
<!-- #region DEBUG --> (HTML/Vue/Svelte)
-- #region DEBUG (Lua)
...instrumentation...
// #endregion DEBUG (matching closer)
Logging rules
- NEVER use
console.log、printor any stdout/stderr output. All debug output MUST go todebug.log— server-side via file-append, browser-side viafetchto a debug API endpoint. - Log messages include hypothesis number:
[DEBUG H1],[DEBUG H2], etc. - Log variable states, execution paths, timing, decision points
- Be minimal — only what's needed to confirm/rule out each hypothesis
After instrumenting, tell the user to reproduce the bug, then STOP and wait.
Phase 4: Analyze Logs & Diagnose
When the user has reproduced:
- Check log file size first (e.g.
wc -lorls -lh). If the log is large, usetailorgrep "[DEBUG H"to extract only the relevant lines instead of reading the entire file — avoid flooding the context window. - Map logs to hypotheses — determine which are confirmed vs ruled out
- Present diagnosis with evidence:
## Diagnosis
**Root cause**: [Explanation backed by log evidence]
Evidence:
- [H1] Ruled out — [why]
- [H2] Confirmed — [log evidence]
If inconclusive: new hypotheses → more instrumentation → archive & reset log → ask user to reproduce again.
Phase 5: Generate a Fix
Write a fix. Keep debug instrumentation in place.
Archive and reset .agents/debug.log, ask user to verify the fix works, then STOP and wait.
Phase 6: Verify & Clean Up
If fixed: Remove all #region DEBUG blocks and contents (use Grep to find them), delete all .agents/debug*.log files (including archived logs), summarize.
If NOT fixed: Read new logs, ask what they observed, return to Phase 2, iterate.
Rules
- Never skip phases. Instrument and verify even if you think you know the answer.
- Never remove instrumentation before user confirms the fix.
- Never use
console.log、printetc. Route all debug output to{project_root}/.agents/debug.log(or adapt the transport if runtime constraints require it). - Always archive existing logs and reset
debug.logbefore each reproduction. - Always wrap instrumentation in
#region DEBUGblocks. - Always wait for the user after asking them to reproduce (or when waiting for intermittent occurrences).
Version History
-
c34f9e3
Current 2026-09-09 11:41
将日志目录从.claude迁移至.agents;增加日志归档机制以保留历史记录;补充对受限环境和间歇性Bug的证据收集灵活性指导。
- 2dc917f 2026-07-25 10:26


