🎯

tldr-router

🎯Skill

from parcadei/continuous-claude-v3

VibeIndex|
What it does

tldr-router skill from parcadei/continuous-claude-v3

tldr-router

Installation

Install skill:
npx skills add https://github.com/parcadei/continuous-claude-v3 --skill tldr-router
9
AddedJan 27, 2026

Skill Details

SKILL.md

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 --project . --depth 2

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:

  1. Detect intent from your messages
  2. Route to appropriate layers
  3. 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

🎯
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.