← Back to Skills Marketplace
genortg

Diagnose

by Krzysztof · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
43
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install diagnose
Description
Disciplined diagnosis loop for hard bugs and performance regressions. Reproduce → minimise → hypothesise → instrument → fix → regression-test. Use when somet...
README (SKILL.md)

Diagnose

A discipline for hard bugs. Skip phases only when explicitly justified.

When exploring the codebase, use the project's domain glossary to get a clear mental model of the relevant modules, and check ADRs in the area you're touching.

Phase 1 — Build a Feedback Loop

This is the skill. Everything else is mechanical. If you have a fast, deterministic, agent-runnable pass/fail signal for the bug, you will find the cause. If you don't, no amount of staring at code will help.

Spend disproportionate effort here. Be aggressive. Be creative. Refuse to give up.

Ways to construct one — try in roughly this order

  1. Failing test at whatever seam reaches the bug — unit, integration, e2e.
  2. Curl / HTTP script against a running dev server.
  3. CLI invocation with a fixture input, diffing stdout against a known-good snapshot.
  4. Browser snapshot via Playwright / Puppeteer — drives the UI, asserts on DOM/console/network.
  5. Replay a captured trace. Save a real request/payload/event log; replay it through the code path in isolation.
  6. Throwaway harness. Minimal subset of the system that exercises the bug code path with a single call.
  7. Property / fuzz loop. If the bug is "sometimes wrong output," run 1000 random inputs and look for the failure mode.
  8. Bisection harness. Automate "boot at state X, check, repeat" so you can git bisect run it.
  9. Differential loop. Run same input through old vs new version, diff outputs.

Iterate on the loop itself

Once you have a loop, ask:

  • Can I make it faster? (Skip unrelated init, narrow scope.)
  • Can I make the signal sharper? (Assert on specific symptom, not "didn't crash.")
  • Can I make it more deterministic? (Pin time, seed RNG, isolate filesystem.)

A 30-second flaky loop is barely better than no loop. A 2-second deterministic loop is a debugging superpower.

Non-deterministic bugs

The goal is not a clean repro but a higher reproduction rate. Loop 100×, parallelise, add stress, narrow timing windows. A 50%-flake bug is debuggable; 1% is not — keep raising the rate.

When you genuinely cannot build a loop

Stop and say so explicitly. List what you tried. Ask the user for: (a) access to the reproducing environment, (b) a captured artifact (HAR file, log dump, core dump), or (c) permission to add temporary production instrumentation. Do not proceed to hypothesise without a loop.

Phase 2 — Reproduce

Run the loop. Watch the bug appear.

Confirm:

  • The loop produces the failure mode the user described — not a different nearby failure
  • The failure is reproducible across multiple runs (or, for non-deterministic bugs, at a high enough rate)
  • You have captured the exact symptom so later phases can verify the fix

Do not proceed until you reproduce the bug.

Phase 3 — Hypothesise

Generate 3–5 ranked hypotheses before testing any of them. Single-hypothesis generation anchors on the first plausible idea.

Each hypothesis must be falsifiable: state the prediction it makes.

Format: "If \x3CX> is the cause, then \x3Cchanging Y> will make the bug disappear / \x3Cchanging Z> will make it worse."

If you cannot state the prediction, the hypothesis is a vibe — discard or sharpen it.

Show the ranked list to the user before testing. They often have domain knowledge that re-ranks instantly ("we just deployed a change to #3"). Don't block on it — proceed if the user is AFK.

Phase 4 — Instrument

Each probe must map to a specific prediction from Phase 3. Change one variable at a time.

Tool preference:

  1. Debugger / REPL inspection if the env supports it. One breakpoint beats ten logs.
  2. Targeted logs at the boundaries that distinguish hypotheses.
  3. Never "log everything and grep."

Tag every debug log with a unique prefix, e.g. [DEBUG-a4f2]. Cleanup at the end becomes a single grep. Tagged logs die; untagged logs survive.

Perf branch. For performance regressions, logs are usually wrong. Instead: establish a baseline measurement (timing harness, performance.now(), profiler), then bisect. Measure first, fix second.

Phase 5 — Fix + Regression Test

Write the regression test before the fix — but only if there is a correct seam for it.

A correct seam is one where the test exercises the real bug pattern as it occurs at the call site. If the only available seam is too shallow, a regression test there gives false confidence.

If no correct seam exists, that itself is the finding. Flag it — the architecture is preventing the bug from being locked down.

If a correct seam exists:

  1. Turn the minimised repro into a failing test at that seam.
  2. Watch it fail.
  3. Apply the fix.
  4. Watch it pass.
  5. Re-run the Phase 1 feedback loop against the original (un-minimised) scenario.

Phase 6 — Cleanup + Post-Mortem

Required before declaring done:

  • Original repro no longer reproduces (re-run the Phase 1 loop)
  • Regression test passes (or absence of seam is documented)
  • All [DEBUG-...] instrumentation removed (grep the prefix)
  • Throwaway prototypes deleted (or moved to a clearly-marked debug location)
  • The correct hypothesis is stated in the commit / PR message — so the next debugger learns

Then ask: what would have prevented this bug? If the answer involves architectural change (no good test seam, tangled callers), consider running the /improve-codebase-architecture skill with the specifics.

Usage Guidance
Reasonable to install if you want a structured debugging process. Expect it to encourage tests, local commands, temporary logs, and throwaway harnesses during bug investigation; review any resulting code changes and ensure temporary instrumentation is removed before merging.
Capability Assessment
Purpose & Capability
The stated purpose is disciplined diagnosis of bugs and performance regressions, and the artifact content matches that purpose through reproduction, hypothesis, instrumentation, fixing, testing, and cleanup steps.
Instruction Scope
Instructions are scoped to debugging work and emphasize building a feedback loop, confirming reproduction, showing hypotheses, targeted instrumentation, regression tests, and cleanup.
Install Mechanism
The artifact contains only a markdown SKILL.md file; no executable scripts, dependencies, install hooks, or package-time behavior were present.
Credentials
The skill may guide an agent to run tests, curl scripts, browser automation, profilers, or temporary debug instrumentation, which is expected and proportionate for debugging but can affect the working tree.
Persistence & Privilege
No artifact-backed persistence, background workers, privilege escalation, credential/session handling, broad local indexing, exfiltration, or destructive behavior was found.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install diagnose
  3. After installation, invoke the skill by name or use /diagnose
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release — disciplined diagnosis loop for hard bugs. Adapted from GSD Core by TÂCHES/open-gsd.
Metadata
Slug diagnose
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Diagnose?

Disciplined diagnosis loop for hard bugs and performance regressions. Reproduce → minimise → hypothesise → instrument → fix → regression-test. Use when somet... It is an AI Agent Skill for Claude Code / OpenClaw, with 43 downloads so far.

How do I install Diagnose?

Run "/install diagnose" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Diagnose free?

Yes, Diagnose is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Diagnose support?

Diagnose is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Diagnose?

It is built and maintained by Krzysztof (@genortg); the current version is v1.0.0.

💬 Comments