Bug Root Cause Analyzer — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Bug Root Cause Analyzer (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
This skill directs the agent to work through a bug methodically — distinguishing the root cause from the symptoms, tracing the execution path that led to the failure, and producing a clear diagnosis before suggesting a fix. It applies the 5-Why technique, reads stack traces carefully, and avoids the trap of patching the symptom without understanding the cause.
Use this when you have a bug that isn't immediately obvious, when a quick fix didn't hold, or when you want to understand why something broke before deciding how to fix it.
Copy this file to .agents/skills/bug-root-cause-analyzer/SKILL.md in your project root.
Then ask:
Provide as much context as you can: the error message, the stack trace, the relevant code, and what you expected to happen.
Add the instructions below to your .cursorrules or paste them into the Cursor AI pane before describing the bug.
When asked to diagnose a bug, follow this process:
Before analyzing, make sure you have:
If any of these are missing, ask for them before proceeding.
For each "why", look for evidence in the code rather than guessing:
Stop when you reach a level where a code change would prevent the bug from occurring in the first place.
Assign one of these root cause categories:
## Bug Diagnosis
### Symptom
[What the user observed — the error message and where it appeared]
### Root Cause
[One or two sentences describing the actual cause, not the symptom]
### Root Cause Category
[One of the categories from Phase 4]
### Execution Path
1. [Entry point]
2. [Next call in the chain]
3. → [Where the failure condition was set]
4. → [Where the error was thrown]
### 5-Why Chain
- Why did X fail? → Because Y was null
- Why was Y null? → Because Z function returned early without populating it
- Why did Z return early? → Because the input failed a guard clause
- Why did the input fail? → Because the API response schema changed and field `foo` is now nested differently
### Recommended Fix
[A specific, targeted fix that addresses the root cause, not the symptom]
### What NOT to do
[If there's an obvious but wrong fix that patches the symptom, call it out]Input to Agent:
"Getting this error in production. Use the Bug Root Cause Analyzer skill.
>
`` TypeError: Cannot read properties of undefined (reading 'price') at calculateTotal (checkout.ts:47) at handleSubmit (CheckoutPage.tsx:112) at HTMLButtonElement.onClick ``>
checkout.ts:47is:const total = items.reduce((sum, item) => sum + item.product.price * item.quantity, 0);"
Output from Agent:
Bug Diagnosis
Symptom TypeError: Cannot read properties of undefined (reading 'price') thrown at checkout.ts:47 when handleSubmit is called.
Root Cause At least one item in the items array has an undefined product field. The reduce assumes every item has a populated product object, but this assumption is violated when an item is in the cart but its product has been deleted or failed to load.
Root Cause Category Missing validation / null dereference
Execution Path
CheckoutPage.tsx:112 → handleSubmithandleSubmit calls calculateTotal(items)checkout.ts:47 iterates items — one item has product: undefined.price on undefined throws TypeError5-Why Chain
.price throw? → item.product is undefinedproduct undefined? → The product was deleted from the DB after being added to the cartcalculateTotal assumed the cart was always valid when calledRecommended Fix Filter out orphaned cart items before calling calculateTotal, and display a warning to the user that an item was removed:
const validItems = items.filter(item => item.product != null);
const total = calculateTotal(validItems);Also add a guard in calculateTotal itself as a defensive measure.
What NOT to do Do not just add item.product?.price ?? 0 in the reduce. That silently includes a $0 item in the total, which is confusing and could result in incorrect orders.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.