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.
npx agentmods add skills/wazimmerman/zimster/systematic-debuggingnpx skills add wazimmerman/zimster --skill systematic-debugginggit clone --depth 1 https://github.com/wazimmerman/zimsterWrote 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.
[](https://agentmods.dev/skills/wazimmerman/zimster/systematic-debugging)<a href="https://agentmods.dev/skills/wazimmerman/zimster/systematic-debugging"><img src="https://agentmods.dev/badge/skills/wazimmerman/zimster/systematic-debugging.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00023 | $0.00513 |
| Opus 5 | $0.00012 | $0.00257 |
| Sonnet 5 | $0.00005 | $0.00103 |
| Haiku 4.5 | $0.00002 | $0.00051 |
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 3d ago.
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.
How it starts
The opening of the file, as written. The whole thing — 84 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Systematic Debugging
Do not begin with a plausible patch. Begin with a verified symptom and an explanation that accounts for the evidence.
1. Reproduce
Capture the smallest reliable reproduction:
- exact command, input, environment, and observed output;
- whether the failure is deterministic;
- the last known good version or condition when available;
- the component boundary where expected behavior first diverges.
If the reported problem cannot be reproduced, gather logs or instrumentation. Do not manufacture certainty.
2. Establish the causal chain
Trace data and control flow backward from the bad observation:
- What value or state is wrong?
- Which producer created it?
- What assumptions did that producer make?
- Which upstream event violated those assumptions?
- Why did existing validation or tests not catch it?
For distributed, asynchronous, or native boundaries, record timestamps, identifiers, generations, ownership, and cleanup, not only error strings.
3. Form competing hypotheses
List the few explanations consistent with the evidence. Rank them by how much they explain, not by convenience. Design the smallest discriminating experiment for the leading hypotheses.
Change one variable at a time. Instrument before rewriting. A failed hypothesis is useful evidence; remove its instrumentation when finished.
4. Confirm root cause
A root-cause explanation must predict:
- the original failure;
- at least one nearby edge case;
- why the obvious or prior fix was insufficient;
- the location where a durable invariant can prevent recurrence.
If the same attempted fix fails twice, stop cycling. Re-examine the model, consult one bounded diagnostician, or revise the design.
5. Fix through TDD
Load test-driven-development:
- encode the smallest regression proof;
- observe RED on the defective behavior;
- implement the invariant-level fix;
- observe GREEN;
- perform a revert or mutation check;
- run affected tests and any concurrency/resource cleanup checks.
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 3d ago First seen · 84 lines · 23 tokens per session scan A 75651be10d1e
systematic-debugging is a skill published in the GitHub repository wazimmerman/zimster (2 stars, last pushed 15d ago), licensed MIT. It adds 23 tokens to every session and 513 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.
Other skills, from other repositories
treework-manual
Use TreeWork Manual when the user asks for it, or when the Agent judges that organizing ongoing, multi-part work as a persistent Markdown Tree would improve direction, continuity, recovery, or handoff. Adapt the Tree's depth and document detail to the user's needs, domain, and situation rather than a fixed threshold.
treework
Use TreeWork, a tree-guided development plugin for complex or evolving software projects that need staged alignment, pre-coding technical Specs, declarative project-tree planning, branch-scoped Git worktrees, durable recovery, and protected completion. It teaches the Agent to move through development along the Tree…
单元测试自动生成
为核心函数、边界条件和回归场景生成单元测试。.
bug-fix
Regression-first workflow for fixing a defect whose cause is known. Reproduce the confirmed defect, fix the root cause minimally, protect it with a regression test, and verify. If the root cause is still unknown, use the debugging skill first.
hf.check-test-counterpart
Skill "hf.check-test-counterpart" from T-rav/hydraflow, covering hf.check-test-counterpart, fires on pretooluse for write tool, does not block (exit 0) - only shows a reminder, only check python source files and skip test files, configs, init, migrations, scripts.
repository-bootstrap
Audit and establish or upgrade the canonical repository governance baseline. Use only when explicitly asked to bootstrap, standardize, or upgrade a repository; do not use for feature development or source-code restructuring.