Root cause tracing
Skill lubochka/xiigen-general-skills/claude/skills/root-cause-tracing
Open-source AI agent skills for safer Claude, Codex and Cursor coding workflows
npx -y skills add lubochka/xiigen-general-skills --skill root-cause-tracingAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 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
Find the cause behind a symptom. Use when a failure repeats, appears indirect, or has multiple possible causes.
SKILL.md
0.8 KB, as published. Nobody here has run it
Root Cause Tracing
Purpose
Find the cause behind a symptom.
When to Use
Use when a failure repeats, appears indirect, or has multiple possible causes.
Inputs
Reproduction steps, logs, changed files, dependency boundaries.
Steps
- Reproduce or isolate the symptom.
- Trace backward to the first bad point.
- Test one hypothesis at a time.
- Confirm the fix addresses the cause.
Gates
The explanation accounts for the observed symptom and the chosen fix.
Evidence
Repro notes, hypothesis checks, and before/after behavior.
Anti-Patterns
Treating downstream error messages as the root cause.
Related
failure-triage, systematic-debugging