llm-tldr

📁 tiberriver256/ai-coding-workshop 📅 Jan 23, 2026
8
总安装量
8
周安装量
#36015
全站排名
安装命令
npx skills add https://github.com/tiberriver256/ai-coding-workshop --skill llm-tldr

Agent 安装分布

claude-code 7
gemini-cli 6
codex 6
opencode 6
antigravity 4
windsurf 4

Skill 文档

llm-tldr

Run the tool

  • Install the vendored tool when needed:
    python3 -m venv .venv
    source .venv/bin/activate
    pip install -e tools/llm-tldr
    
  • Build or refresh the index from the repo root:
    tldr warm .
    
  • Generate LLM-ready summaries or semantic matches:
    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.