tldr-deep
Full 5-layer analysis of a specific function. Use when debugging or deeply understanding code.
By parcadei · 477 installs
npx skills add parcadei/continuous-claude-v3 --skill tldr-deep
Source repository · Upstream listing
TLDR Deep Analysis
Full 5 layer analysis of a specific function. Use when debugging or deeply understanding code.
Trigger
/tldr deep <function name
"analyze function X in detail"
"I need to deeply understand how Y works"
Debugging complex functions
Layers
Layer Purpose Command
L1: AST Structure tldr extract <file
L2: Call Graph Navigation tldr context <func depth 2
L3: CFG Complexity tldr cfg <file <func
L4: DFG Data flow tldr dfg <file <func
L5: Slice Dependencies tldr slice <file <func <line
Execution
Given a function name, run all layers:
Output Format
When to Use
1. Debugging Need to understand all paths through a function
2. Refactoring Need to know what depends on what
3. Code review Analyzing complex functions
4. Performance Finding hot spots (high cyclomatic complexity)
Programmatic API