smithery/neversight

llm-tldr

Summarize and navigate this repo with the llm-tldr CLI (tree/structure/context/semantic search). Use when you need LLM-ready summaries of files or symbols, fast codebase orientation, or behavior-based search before editing.

Installation

$ npx skills add smithery/neversight --skill llm-tldr

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/neversight · top by installs.

npx skills add smithery/neversight

Browse all from smithery/neversight

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,173 B
  • docs SUMMARY.md 239 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

llm-tldr

Run the tool

  • Install the vendored tool when needed:

``bash python3 -m venv .venv source .venv/bin/activate pip install -e tools/llm-tldr ``

  • Build or refresh the index from the repo root:

``bash tldr warm . ``

  • Generate LLM-ready summaries or semantic matches:

``bash tldr context <symbol> --project . tldr semantic "<behavior or intent>" . tldr tree <path> tldr structure <path> --lang <language> ``

Know where outputs go

  • Read results from stdout; redirect to a file if you need to persist them.
  • Expect indexes and config under .tldr/ in the repo root (e.g., .tldr/cache/semantic.faiss).
  • Note that tldr warm . will create .tldrignore if it is missing.

Troubleshoot quickly

  • Rebuild the index after large changes: tldr warm ..
  • If semantic search fails, confirm the venv is active and the tool is installed from tools/llm-tldr.