TLDR Deep Analysis Full 5-layer analysis of a specific function. Use when debugging or deeply understanding code. Trigger - - "analyze function X in detail" - "I need to deeply understand how Y works" - Debugging complex functions Layers | Layer | Purpose | Command | |-------|---------|---------| | L1: AST | Structure | | | L2: Call Graph | Navigation | | | L3: CFG | Complexity | | | L4: DFG | Data flow | | | L5: Slice | Dependencies | | 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 - Ne…