Diagnose
Reviewable capability layer for coding agents. Portable skills, delivery gates, workflow patterns, and verification-first engineering.
npx -y skills add markoblogo/abvx-agent-skills --skill diagnoseAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 4 stars4 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.
What its author says it does
Copied from the file, not written here
Debug coding failures through reproduction, ranked hypotheses, narrow fixes, and verification. Use when a bug, regression, flaky test, performance failure, or inconsistent behavior is broken, slow, throwing, or hard to reproduce and the task needs disciplined diagnosis instead of guessed fixes.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
2.4 KB, 432 tokens by cl100k_base, as published. Nobody here has run it
Diagnose
The core job is to build a reliable feedback loop. Without one, hypotheses are weak.
Phase 1: Feedback Loop
Create the smallest useful pass/fail signal:
- failing test;
- CLI command with fixture;
- HTTP request against local server;
- browser script;
- replayed trace or payload;
- small harness around the relevant function;
- repeated flake trigger with counted failure rate.
If no loop can be built, state what was tried and ask for logs, traces, access, or permission to instrument.
Phase 2: Reproduce
Confirm the loop matches the user's symptom, not a nearby failure. Capture exact error text, wrong output, timing, network failure, or UI state.
For nondeterministic issues, raise the reproduction rate with repetition, stress, seeded randomness, timing controls, and isolation.
Phase 3: Hypothesize
Write 3-5 ranked hypotheses before editing. Each must include:
Hypothesis:
Prediction:
Probe:
Result:
Status:
Test one variable at a time. Update rankings as evidence arrives.
Phase 4: Instrument
- Prefer debugger, REPL, targeted logs, traces, or profiler over broad logging.
- Tag temporary instrumentation with a unique marker such as
[DEBUG-7b3c]. - Remove all temporary instrumentation before finalizing.
- For performance regressions, measure first and fix second.
Phase 5: Fix And Regression Test
If a correct seam exists, turn the minimized repro into a failing regression check before the fix. If no correct seam exists, document that as an architecture gap.
Apply the smallest fix supported by evidence, then rerun:
- the regression check;
- the original feedback loop;
- relevant project checks.
When the task needs an auditable incident, device, CI/runtime, or regression record, hand the established reproducer and verification commands to bug-evidence-protocol. That protocol records proof; it does not replace this diagnostic loop.
Final Report
Include root cause, winning hypothesis, files changed, verification, debug cleanup, and residual risk.
What ships with it: 2 files
1.3 KB alongside SKILL.md
agents/
- openai.yaml218 B
- SKILL_CARD.md1.1 KB