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 skills add jeonnoin-alt/Eureka --skill systematic-troubleshootinggit clone --depth 1 https://github.com/jeonnoin-alt/EurekaWrote 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/jeonnoin-alt/eureka/systematic-troubleshooting)<a href="https://agentmods.dev/skills/jeonnoin-alt/eureka/systematic-troubleshooting"><img src="https://agentmods.dev/badge/skills/jeonnoin-alt/eureka/systematic-troubleshooting/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/jeonnoin-alt/eureka/systematic-troubleshooting"><img src="https://agentmods.dev/badge/skills/jeonnoin-alt/eureka/systematic-troubleshooting.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00027 | $0.03857 |
| Opus 5 | $0.00014 | $0.01929 |
| Sonnet 5 | $0.00005 | $0.00771 |
| Haiku 4.5 | $0.00003 | $0.00386 |
Grade A, and why
systematic-troubleshooting 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 12d 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 — 347 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Systematic Troubleshooting
Overview
Guessing at explanations wastes time and corrupts the scientific record. Post-hoc rationalization is indistinguishable from cargo-cult science.
Core principle: ALWAYS investigate root cause before proposing explanations or re-running experiments. Rationalization without investigation is failure.
Violating the letter of this process is violating the spirit of scientific rigor.
The Iron Law
NO EXPLANATIONS WITHOUT ROOT CAUSE INVESTIGATION FIRST
If you haven't completed Phase 1, you cannot propose why an experiment failed.
When to Use
Use for ANY unexpected experimental result:
- Model performance far below or above expectation
- Analysis output that contradicts prior findings
- Metric values that don't make domain sense (e.g., correlation > 1, negative variance)
- Convergence failures, NaN/Inf in outputs
- Results that change between runs with no code change
- Findings that contradict established literature
Use this ESPECIALLY when:
- Under deadline pressure (temptation to re-run and hope is highest)
- "I know what went wrong" feels obvious
- You've already tried re-running multiple times
- A reviewer asked why results differ from a prior submission
- You don't fully understand the pipeline end to end
Don't skip when:
- The issue seems minor (small discrepancies have real causes)
- You're in a hurry (systematic is faster than rationalized thrashing)
- The paper deadline is close (wrong results submitted is worse than delayed submission)
The Four Phases
You MUST complete each phase before proceeding to the next.
Phase 1: Investigate
BEFORE proposing any explanation or re-running:
- Read Error Messages and Output Carefully
- Don't skip past warnings — in scientific pipelines, warnings are often the finding
- Read log files completely, not just the final summary line
- Note exact metric values, not approximations
- Record environment: library versions, hardware, OS, date
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.
- 12d ago First seen · 347 lines · 27 tokens per session scan A d1bc2ad6832d
systematic-troubleshooting is a skill published in the GitHub repository jeonnoin-alt/Eureka (2 stars, last pushed 4mo ago), licensed MIT. It adds 27 tokens to every session and 3,857 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
operating-cadence
Designs the rhythm an organization runs on — which reviews happen weekly, monthly and quarterly, what each one decides, who owns the numbers presented, and how a signal at the front line reaches the people who can act on it. Use this to set up a management operating system, fix a meeting calendar that produces no…
safe-debug
Rigor Debug / Rigor Audit skill for deep learning research work. Use when the user pastes a traceback, terminal error, CUDA OOM, checkpoint load failure, shape mismatch, NaN loss symptom, or training failure and wants conservative diagnosis before any patching, with debug fixes clearly separated from research…
serena
Serena code intelligence — LSP-powered symbol navigation, diagnostics, and targeted code surgery. Activate before complex refactors, cross-file analysis, or when graph tools need symbol-level depth.
diagnose
Structured 6-phase debugging. Build feedback loop first, reproduce deterministically, hypothesize with ranked falsifiable theories, instrument one variable at a time, fix with regression test, cleanup. Use when a bug exists, tests fail unexpectedly, or behavior is wrong and cause is unknown.
rudder-destination-debugging
Diagnoses why events are failing, dropping, or not arriving at a destination. Use when events are missing from a destination, seeing high error rates, getting auth failures, or events are stuck retrying.
fix
Plan-aware auto-fix loop after coding. Runs tests, lint, format, and graph checks. Updates plan task status. Use after execute/tdd.