systematic-debugging

systematic-debugging is a skill for Claude Code, Codex from Azzygoatcoder/agent-useful-skills. It costs 21 tokens per session (703 once invoked), scanned A, original, MIT.

A debugging process that investigates the root cause of a bug, test failure, or unexpected result before changing code.

In plain words
What is it for?
Use it to reproduce issues, compare working examples, test possible causes, implement a fix, and verify the result.
Why use it?
It reduces repeated fixes that only hide symptoms and may create new problems.

Skill for Claude CodeCodex

Part of the superpowers plugin — 9 skills, 1 hook shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/azzygoatcoder/agent-useful-skills/systematic-debugging
Any agent
npx skills add Azzygoatcoder/agent-useful-skills --skill systematic-debugging
Clone the repo
git clone --depth 1 https://github.com/Azzygoatcoder/agent-useful-skills

Made for: Claude Code, Codex.

Or install superpowers, the plugin that ships this one along with the rest of its 9 skills, 1 hook.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for systematic-debugging

README.md
[![agentmods](https://agentmods.dev/badge/skills/azzygoatcoder/agent-useful-skills/systematic-debugging.svg)](https://agentmods.dev/skills/azzygoatcoder/agent-useful-skills/systematic-debugging)
Your own site
<a href="https://agentmods.dev/skills/azzygoatcoder/agent-useful-skills/systematic-debugging"><img src="https://agentmods.dev/badge/skills/azzygoatcoder/agent-useful-skills/systematic-debugging.svg" alt="Measured on agentmods" height="20"></a>
Per session 21 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 703 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00021 $0.00703
Opus 5 $0.00010 $0.00351
Sonnet 5 $0.00004 $0.00141
Haiku 4.5 $0.00002 $0.00070

Measured 4d ago against content hash 03f2a83202b2, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

systematic-debugging scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (condition-based-waiting-example.ts, find-polluter.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/superpowers/skills/systematic-debugging/SKILL.md · 66 lines

What it actually says

Systematic Debugging

Overview

Core principle: ALWAYS find root cause before attempting fixes. Symptom fixes are failure.

Violating the letter of this process is violating the spirit of debugging.

The Iron Law

NO FIXES WITHOUT ROOT CAUSE INVESTIGATION FIRST

If you haven't completed Phase 1, you cannot propose fixes.

场景判定(先定轻重,再定流程)

场景 力度
生产环境、正式项目、共享代码、反复出现的 bug 完整四阶段:根因 → 模式 → 假设验证 → 实施
个人业余项目、低风险探索、一次性脚本 轻量调试:至少做到「稳定复现 → 定位根因 → 验证修复」;不需要形式上把四阶段全走一遍
纯 throwaway / 临时现象 可不深挖,但不要把这个修复当作“已验证”提交

判断标准:这个 bug 会浪费别人/后续/生产多少时间? 低风险就快走,高成本就按完整流程。完整流程不是仪式,是“这个错误值得花时间”时的护城河。

Quick Reference

Phase Key Activities Success Criteria
1. Root Cause Read errors, reproduce, check changes, 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

完整四阶段、Red Flags、Common Rationalizations 和 Supporting Techniques 见 references/debugging-guide.md

轻量路径(个人/低风险项目)

  1. 先复现:能不能稳定触发?不能,先补数据/日志,别猜。
  2. 定位根因:读错误信息、看最近改动、追到数据源头。至少确定“是哪里错了”,而不是“哪里看起来像错”。
  3. 最小修复:一次只改一个变量,验证修复是否生效。
  4. 验收:确认问题消失;如果影响真实使用,补一个最小回归测试。

Red Flags(速记)

  • 还没定位根因就开始改
  • “先快速修一下,之后再查”
  • 一次改多个地方
  • 3 次以上修复失败还在继续

遇到这些,STOP 回到根因调查。

Supporting Techniques

  • root-cause-tracing.md — Trace bugs backward through call stack to find original trigger
  • defense-in-depth.md — Add validation at multiple layers after finding root cause
  • condition-based-waiting.md — Replace arbitrary timeouts with condition polling

完整展开见 references/debugging-guide.md

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 66 lines · 21 tokens per session scan A 03f2a83202b2

Subscribe to this mod's changes

systematic-debugging is a skill published in the GitHub repository Azzygoatcoder/agent-useful-skills (4 stars, last pushed 6d ago), licensed MIT. It adds 21 tokens to every session and 703 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories