agentsclimarketplace

Systematic debugging

Skill swd3k/skills/agent-skills/programming/systematic-debugging

Debug software issues with a structured reproduce → isolate → fix → regress loop. Use when facing white screens, flaky CI, production-only bugs, or vague 'it doesn't work' reports.From its SKILL.md

Install
npx -y skills add swd3k/skills --skill systematic-debugging

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.4 KB, 304 tokens by cl100k_base, as published. Nobody here has run it

Systematic Debugging

Loop

  1. Reproduce — exact steps, OS, version, artifact (not only source).
  2. Define expected vs actual in one sentence each.
  3. Bisect — last known good commit/tag/build.
  4. Isolate layer — UI / host bridge / service / OS / network / packaging.
  5. Hypothesize one cause — test cheapest disproof first.
  6. Fix minimal — no drive-by refactors in the same commit.
  7. Regress — add a test or checklist item so it can't return silently.

Evidence > intuition

  • Logs with timestamps
  • Exit codes
  • Network traces
  • Screenshots / screen recordings
  • git bisect when regression window is large

Desktop-specific

SymptomFirst checks
White screenasset load path, CSS blocked, JS throw
Works in VS, fails installedcwd, relative paths, missing runtime
CI onlypath case, secrets, runner OS, corrupted downloads
Admin onlymanifest, UAC cancel path

Output when reporting

  • Root cause (one paragraph)
  • Fix (what changed)
  • How verified
  • Residual risk

Pitfalls

  • Changing 5 things at once
  • "Fixed" without reproduction of original failure
  • Ignoring the packaging step (only testing dotnet run)

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.