tldr-router
π―Skillfrom parcadei/continuous-claude-v3
tldr-router skill from parcadei/continuous-claude-v3
Installation
npx skills add https://github.com/parcadei/continuous-claude-v3 --skill tldr-routerSkill Details
Maps questions to the optimal tldr command. Use this to pick the right layer
Overview
# TLDR Smart Router
Maps questions to the optimal tldr command. Use this to pick the right layer.
Question β Command Mapping
"What files/functions exist?"
```bash
tldr tree . --ext .py # File overview
tldr structure src/ --lang python # Function/class overview
```
Use: Starting exploration, orientation
"What does X call / who calls X?"
```bash
tldr context
tldr calls src/
```
Use: Understanding architecture, finding entry points
"How complex is X?"
```bash
tldr cfg
```
Use: Identifying refactoring candidates, understanding difficulty
"Where does variable Y come from?"
```bash
tldr dfg
```
Use: Debugging, understanding data flow
"What affects line Z?"
```bash
tldr slice
```
Use: Impact analysis, safe refactoring
"Search for pattern P"
```bash
tldr search "pattern" src/
```
Use: Finding code, structural search
Decision Tree
```
START
β
βββΊ "What exists?" βββΊ tree / structure
β
βββΊ "How does X connect?" βββΊ context / calls
β
βββΊ "Why is X complex?" βββΊ cfg
β
βββΊ "Where does Y flow?" βββΊ dfg
β
βββΊ "What depends on Z?" βββΊ slice
β
βββΊ "Find something" βββΊ search
```
Intent Detection Keywords
| Intent | Keywords | Layer |
|--------|----------|-------|
| Navigation | "what", "where", "find", "exists" | tree, structure, search |
| Architecture | "calls", "uses", "connects", "depends" | context, calls |
| Complexity | "complex", "refactor", "branches", "paths" | cfg |
| Data Flow | "variable", "value", "assigned", "comes from" | dfg |
| Impact | "affects", "changes", "slice", "dependencies" | slice/pdg |
| Debug | "bug", "error", "investigate", "broken" | cfg + dfg + context |
Automatic Hook Integration
The tldr-read-enforcer and tldr-context-inject hooks automatically:
- Detect intent from your messages
- Route to appropriate layers
- Inject context into tool calls
You don't need to manually run these commands - the hooks do it for you.
Manual Override
If you need a specific layer the hooks didn't provide:
```bash
# Force specific analysis
tldr cfg path/to/file.py function_name
tldr dfg path/to/file.py function_name
tldr slice path/to/file.py function_name 42
```
More from this repository10
Enables seamless integration between Agentica agents and Claude Code CLI by managing proxy configurations, tool permissions, and response formatting.
Manages git commits by removing Claude attribution, generating reasoning documentation, and ensuring clean commit workflows.
Systematically diagnose and resolve hook registration, execution, and output issues in Claude Code projects by checking cache, settings, files, and manual testing.
Systematically researches, analyzes, plans, implements, and reviews migrations across frameworks, languages, and infrastructure with minimal risk.
Enables background agent execution with system-triggered progress notifications, avoiding manual polling and context flooding.
Provides comprehensive reference and infrastructure for building sophisticated multi-agent coordination patterns and workflows with precise API specifications and tracking mechanisms.
Generates a comprehensive summary of the current system's configuration, components, and key metrics across skills, agents, hooks, and other core systems.
Provides comprehensive CLI commands and flags for interacting with Claude Code, enabling headless mode, automation, and session management.
Traces and correlates Claude Code session events across parent and sub-agent interactions using comprehensive Braintrust instrumentation.
Rapidly edits files using AI-powered Morph Apply API with high accuracy and speed, without requiring full file context.