🎯

tldr-overview

🎯Skill

from parcadei/continuous-claude-v3

VibeIndex|
What it does

Generates concise, structured summaries of complex documents or code repositories, highlighting key insights and architectural patterns

tldr-overview

Installation

Install skill:
npx skills add https://github.com/parcadei/continuous-claude-v3 --skill tldr-overview
5
Last UpdatedJan 26, 2026

Skill Details

SKILL.md

Get a token-efficient overview of any project using the TLDR stack

Overview

# TLDR Project Overview

Get a token-efficient overview of any project using the TLDR stack.

Trigger

  • /overview or /tldr-overview
  • "give me an overview of this project"
  • "what's in this codebase"
  • Starting work on an unfamiliar project

Execution

1. File Tree (Navigation Map)

```bash

tldr tree . --ext .py # or .ts, .go, .rs

```

2. Code Structure (What Exists)

```bash

tldr structure src/ --lang python --max 50

```

Returns: functions, classes, imports per file

3. Call Graph Entry Points (Architecture)

```bash

tldr calls src/

```

Returns: cross-file relationships, main entry points

4. Key Function Complexity (Hot Spots)

For each entry point found:

```bash

tldr cfg src/main.py main # Get complexity

```

Output Format

```

Project Overview: {project_name}

Structure

{tree output - files and directories}

Key Components

{structure output - functions, classes per file}

Architecture (Call Graph)

{calls output - how components connect}

Complexity Hot Spots

{cfg output - functions with high cyclomatic complexity}

---

Token cost: ~{N} tokens (vs ~{M} raw = {savings}% savings)

```

When NOT to Use

  • Already familiar with the project
  • Working on a specific file (use targeted tldr commands instead)
  • Test files (need full context)

Programmatic Usage

```python

from tldr.api import get_file_tree, get_code_structure, build_project_call_graph

# 1. Tree

tree = get_file_tree("src/", extensions={".py"})

# 2. Structure

structure = get_code_structure("src/", language="python", max_results=50)

# 3. Call graph

calls = build_project_call_graph("src/", language="python")

# 4. Complexity for hot functions

for edge in calls.edges[:10]:

cfg = get_cfg_context("src/" + edge[0], edge[1])

```

More from this repository10

🎯
agentica-claude-proxy🎯Skill

Enables seamless integration between Agentica agents and Claude Code CLI by managing proxy configurations, tool permissions, and response formatting.

🎯
git-commits🎯Skill

Manages git commits by removing Claude attribution, generating reasoning documentation, and ensuring clean commit workflows.

🎯
debug-hooks🎯Skill

Systematically diagnose and resolve hook registration, execution, and output issues in Claude Code projects by checking cache, settings, files, and manual testing.

🎯
migrate🎯Skill

Systematically researches, analyzes, plans, implements, and reviews migrations across frameworks, languages, and infrastructure with minimal risk.

🎯
background-agent-pings🎯Skill

Enables background agent execution with system-triggered progress notifications, avoiding manual polling and context flooding.

🎯
agentica-infrastructure🎯Skill

Provides comprehensive reference and infrastructure for building sophisticated multi-agent coordination patterns and workflows with precise API specifications and tracking mechanisms.

🎯
system-overview🎯Skill

Generates a comprehensive summary of the current system's configuration, components, and key metrics across skills, agents, hooks, and other core systems.

🎯
cli-reference🎯Skill

Provides comprehensive CLI commands and flags for interacting with Claude Code, enabling headless mode, automation, and session management.

🎯
braintrust-tracing🎯Skill

Traces and correlates Claude Code session events across parent and sub-agent interactions using comprehensive Braintrust instrumentation.

🎯
morph-apply🎯Skill

Rapidly edits files using AI-powered Morph Apply API with high accuracy and speed, without requiring full file context.