Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

tldr-experttldr 专家

Agent Skill

tldr-expert 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

353

周安装

15

GitHub Stars

9

下载量

124
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tldr-expert(tldr 专家)
来源仓库:https://github.com/yuniorglez/gemini-elite-core
仓库路径:skills/tldr-expert
安装命令:
npx skills add https://github.com/yuniorglez/gemini-elite-core --skill tldr-expert
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/yuniorglez/gemini-elite-core --skill tldr-expert

简介

tldr-expert 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于研究检索类任务,可结合来源仓库和原始 README 核验具体用法。
  • 通过 npx skills add 命令从 GitHub 安装,支持主流 AI 宿主环境。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Skill: TLDR Expert (Standard 2026)

Role: The TLDR Expert is a specialized "Graph-Assisted Code Architect." This role is dedicated to achieving 100% codebase comprehension with < 10% of the token cost of traditional "read-everything" approaches. In 2026, the TLDR Expert leverages semantic layers, structured digests (Gitingest), and advanced packaging (Repomix) to provide the Squaads AI Core with a high-fidelity mental map of any repository.

🎯 Primary Objectives

  1. Token Minimization: Reduce prompt overhead through intelligent code compression and signature extraction.
  2. Context Engineering: Strategically pack context using Repomix to maximize the reasoning power of long-context models (o3, Gemini 3).
  3. Semantic Mapping: Maintain a cross-file call graph and dependency index using llm-tldr.
  4. Forensic Digesting: Use Gitingest to create "Prompt-Ready" summaries for quick onboarding.

🏗️ The 2026 TLDR Stack

1. Analysis Engines

  • llm-tldr (MCP): Real-time graph analysis, caller/callee tracing, and semantic search.
  • Tree-sitter: Used internally by our tools to extract signatures without the "noise" of implementation details.
  • Gitingest: Transforms entire Git repos into structured text digests.

2. Packaging & Compression

  • Repomix: The industry standard for packaging codebases into single, AI-optimized XML/Markdown files.
  • Symbolic Indexing: Mapping complex logic to high-level symbols to reduce context window "chattiness."

🛠️ Implementation Patterns

1. Automated Context Packing (ACP)

Before tackling a complex feature, the TLDR Expert prepares a "Context Bundle."

# Squaads ACP Protocol:
# 1. Package the relevant sub-directory with signature-only mode
repomix --include "src/features/auth/**" --output auth-context.md --compress

# 2. Add the dependency graph from llm-tldr
tldr context src/features/auth/login.ts --depth 2 >> auth-context.md

2. Semantic Forensic Search

When searching for logic that doesn't have a consistent name (e.g., "Where do we handle session expiration?"), use semantic search over text grep.

# Querying the semantic index
tldr semantic "session expiration and cookie cleanup logic"

3. Gitingest Onboarding

For new contributors or sub-agents:

# Create a prompt-friendly digest of the current branch
gitingest . --output ingest-digest.txt --max-size 10mb

📊 Token Saving Benchmarks (2026 Standard)

MethodToken UsageFidelityBest For
Raw read_file100%100%Final implementation/debugging.
Gitingest Digest25%85%Initial onboarding and planning.
Repomix (Compressed)15%90%Context packing for reasoning models.
llm-tldr Query2%95% (Structural)Architectural mapping and tracing.

🚫 The "Do Not List" (Anti-Patterns)

  1. NEVER read a file over 500 lines without first checking its structure via tldr extract.
  2. NEVER use grep for dependency tracing; it misses dynamic imports and indirect calls. Use the callers MCP tool.
  3. NEVER pack node_modules or dist folders into a context bundle. Use the Repomix ignore-list.
  4. NEVER assume a semantic search result is 100% complete. Always verify the most relevant match.

🛡️ Security & Integrity (Secretlint)

The TLDR Expert uses repomix's built-in secretlint to ensure that context bundles never contain:

  • API Keys / Secrets.
  • PII (Personally Identifiable Information).
  • Internal IP addresses or sensitive metadata.

🛠️ Troubleshooting Guide

IssueLikely Cause2026 Corrective Action
llm-tldr Index StaleSignificant refactor performedRun tldr warm. immediately.
Context Bundle too largeToo many implementation detailsRe-run Repomix with --top-level-only or --signatures-only.
Semantic Search "No Match"Query too specific or index coldUse rg for keywords, then tldr context on the results.
Gitingest Output MessyMissing .gitignore configurationEnsure a valid .gitignore exists at the root.

📚 Reference Library


📜 Standard Operating Procedure (SOP)

  1. Onboarding: Run tldr status to check index health.
  2. Mapping: Perform a tldr arch to understand the layers.
  3. Discovery: Use semantic search and callers/callees to isolate the feature logic.
  4. Packing: Create a Repomix bundle for the specific sub-module.
  5. Execution: Pass the optimized context to the reasoning model for the final plan.

🔄 Evolution from v0.x to v1.1.0

  • v1.0.0: Basic llm-tldr MCP wrapper.
  • v1.1.0: Full integration of the "Context Engineering" framework, Repomix compression, and Gitingest digests.

End of TLDR Expert Standard (v1.1.0)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.69%
按下载量换算43

Claude

29.09%
按下载量换算36

Cursor

19.43%
按下载量换算24

Gemini CLI

8.35%
按下载量换算10

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills