Быстрый обзор структуры проекта через TLDR
engineering
tldr-overview is a Claude Code skill that produces a token-efficient overview of any unfamiliar project using the TLDR stack. It runs four sequential operations: building a file tree (`tldr tree`), extracting code structure — functions, classes, and imports per file (`tldr structure`), mapping cross-file call graph entry points (`tldr calls`), and computing cyclomatic complexity for hot spots (`tldr cfg`). The skill is triggered by `/overview` or `/tldr-overview` commands, or natural prompts like "give me an overview of this project" or "what's in this codebase." Output includes a structured report with a token-cost summary showing savings versus reading raw source files. Ideal for developers onboarding to an unfamiliar repository who need a quick architectural picture without burning unnecessary context.
- #project-overview
- #code-structure
- #architecture
- #navigation
- #onboarding