Extract the actual cause from a stack trace instead of pattern-matching the error type. Use on any crash or exception.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add elitongadotti/cockpit --skill read-the-trace --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Read The Trace?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/elitongadotti-read-the-trace)More formats (shields.io, HTML) on the badges page.
---
name: read-the-trace
description: Extract the actual cause from a stack trace instead of pattern-matching the error type. Use on any crash or exception.
when_to_use: a stack trace, an exception, "TypeError/NullPointer/undefined", a crash log
---
# Read the Trace
LLMs love to see "TypeError" and generate a generic fix without reading the trace. Don't.
- Find the **deepest frame in YOUR code** — not the library frame at the top. That's where the bad value entered.
- Read the actual values: what was null/undefined/wrong-type, and where it came from.
- Trace it one level up: why was that value bad? The root is usually 1-2 frames above the throw.
- Reproduce with that exact input before fixing.
A TypeError can mean a hundred things. The trace tells you which one — read all of it, including the "caused by".
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!