Agent skill

tldr-deep

Run full 5-layer analysis (AST, call graph, CFG, DFG, slice) on a specific function for deep debugging or understanding.

vibeeval521★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add vibeeval/vibecosystem --skill tldr-deep --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/tldr-deep/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 521
Language: C#

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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: ```bash # First find the file tldr search "def <function_name>" . # Then run each layer tldr extract <found_file> # L1: Full file structure tldr context <function_name> --project . --depth 2 # L2: Call graph tldr cfg <found_file> <function_name> # L3: Control flow tldr dfg <found_file> <function_name> # L4: Data flow tldr slice <found_file> <function_name> <target_line> # L5: Slice ``` ## Output Format ``` ## Deep Analysis: {function_name} ### L1: Structure (AST) File: {file_path} Signature: {signature} Docstring: {docstring}

What's inside
Steps it walks through
  1. Trigger
  2. Layers
  3. Execution
  4. Output Format
  5. When to Use
  6. Programmatic API
Commands it runs
First find the file
tldr search "def <function_name>" .
Then run each layer
tldr extract <found_file>              # L1: Full file structure
tldr context <function_name> --project . --depth 2  # L2: Call graph
tldr cfg <found_file> <function_name>  # L3: Control flow
tldr dfg <found_file> <function_name>  # L4: Data flow
tldr slice <found_file> <function_name> <target_line>  # L5: Slice
More from vibecosystem
All skills →
About this skill
What does the tldr-deep skill do?

Run full 5-layer analysis (AST, call graph, CFG, DFG, slice) on a specific function for deep debugging or understanding.

How do I install it?

Run `npx skills add vibeeval/vibecosystem --skill tldr-deep --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From vibeeval/vibecosystem, a repository with 521 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going