Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计异常

lean-ctx精益 CTX

Agent Skill

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

总安装

267

周安装

11

GitHub Stars

925

下载量

87
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/yvgude/lean-ctx --skill lean-ctx

简介

用于查找、检索和筛选相关信息,支持基于关键词或任务场景定位结果。

  • 适用于快速获取候选信息,提升 Agent 在复杂查询中的效率。
  • 可通过来源仓库和 README 进一步核验具体用法和功能边界。
  • 安装前建议确认权限范围及是否触发联网或文件读写操作。
  • lean-ctx 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

LeanCTX — Context Runtime for AI Agents

LeanCTX optimizes LLM context through 49 MCP tools, 90+ shell compression patterns, and tree-sitter AST parsing for 18 languages. It provides adaptive file reading, cross-session memory (CCP), task-conditioned relevance scoring, and a feedback loop for learning optimal compression.

Setup (run first)

Before using lean-ctx, verify it is installed:

which lean-ctx || bash scripts/install.sh

If the install script is not available locally, install manually:

curl -fsSL https://raw.githubusercontent.com/yvgude/lean-ctx/main/skills/lean-ctx/scripts/install.sh | bash

After installation, configure the MCP server:

lean-ctx init --global
lean-ctx doctor --fix

When to use lean-ctx

Always prefer lean-ctx -c <command> over running commands directly when:

  • The command produces verbose output (build logs, git diffs, dependency trees, test results)
  • You are reading files and only need the structure or API surface
  • You want to check token savings for the current session

Shell commands (use instead of raw exec)

lean-ctx -c git status          # Compressed git output
lean-ctx -c git diff            # Only meaningful diff lines
lean-ctx -c git log --oneline -10
lean-ctx -c npm install         # Strips progress bars, noise
lean-ctx -c cargo build
lean-ctx -c cargo test
lean-ctx -c docker ps
lean-ctx -c kubectl get pods
lean-ctx -c aws ec2 describe-instances
lean-ctx -c helm list
lean-ctx -c prisma migrate dev
lean-ctx -c curl -s <url>       # JSON schema extraction
lean-ctx -c ls -la <dir>        # Grouped directory listing

Supported: git, npm, pnpm, yarn, bun, deno, cargo, docker, kubectl, helm, gh, pip, ruff, go, eslint, prettier, tsc, aws, psql, mysql, prisma, swift, zig, cmake, ansible, composer, mix, bazel, systemd, terraform, make, maven, dotnet, flutter, poetry, rubocop, playwright, curl, wget, and more.

File reading (compressed modes)

lean-ctx read <file>                    # Full content with structured header
lean-ctx read <file> -m map             # Dependency graph + exports + API (~5-15% tokens)
lean-ctx read <file> -m signatures      # Function/class signatures only (~10-20% tokens)
lean-ctx read <file> -m aggressive      # Syntax-stripped (~30-50% tokens)
lean-ctx read <file> -m entropy         # Shannon entropy filtered (~20-40% tokens)
lean-ctx read <file> -m diff            # Only changed lines since last read

Use map mode when you need to understand what a file does without reading every line. Use signatures mode when you need the API surface of a module (tree-sitter for 18 languages). Use full mode only when you will edit the file.

AI Tool Integration

lean-ctx init --global          # Install shell aliases
lean-ctx init --agent claude    # Claude Code PreToolUse hook
lean-ctx init --agent cursor    # Cursor hooks.json
lean-ctx init --agent gemini    # Gemini CLI BeforeTool hook
lean-ctx init --agent codex     # Codex AGENTS.md
lean-ctx init --agent windsurf  # .windsurfrules
lean-ctx init --agent cline     # .clinerules
lean-ctx init --agent crush     # Crush MCP config
lean-ctx init --agent copilot   # VS Code / Copilot .vscode/mcp.json

Multi-Agent & Knowledge (v2.7.0+)

MCP tools:

  • ctx_knowledge(action="remember", category, key, value) — persistent cross-session project knowledge store
  • ctx_knowledge(action="recall", query) — search stored facts by text or category
  • ctx_knowledge(action="consolidate") — extract session findings into permanent knowledge
  • ctx_agent(action="register", agent_type, role) — multi-agent context sharing with scratchpad messaging
  • ctx_agent(action="post", message, tags) — share findings/warnings between concurrent agents
  • ctx_agent(action="read") — read messages from other agents
  • ctx_agent(action="handoff", to_agent, message) — transfer task to another agent
  • ctx_agent(action="sync") — multi-agent sync status (active agents, pending messages, shared contexts)
  • ctx_share(action="push", paths, to_agent, message) — push cached file contexts to another agent
  • ctx_share(action="pull") — pull shared contexts from other agents
  • ctx_share(action="list") — list all shared contexts
  • ctx_share(action="clear") — remove contexts shared by this agent

Additional Intelligence Tools (v2.19.0)

  • ctx_edit(path, old_string, new_string) — search-and-replace file editing without native Read/Edit
  • ctx_overview(task) — task-relevant project map at session start
  • ctx_preload(task) — proactive context loader, caches task-relevant files
  • ctx_semantic_search(query) — BM25 code search by meaning across the project
  • ctx_intent now supports multi-intent detection and complexity classification
  • Semantic cache: TF-IDF + cosine similarity for finding similar files across reads

Session Continuity (CCP)

lean-ctx sessions list          # List all CCP sessions
lean-ctx sessions show          # Show latest session state
lean-ctx wrapped                # Weekly savings report card
lean-ctx wrapped --month        # Monthly savings report card
lean-ctx benchmark run          # Real project benchmark (terminal output)
lean-ctx benchmark run --json   # Machine-readable JSON output
lean-ctx benchmark report       # Shareable Markdown report

MCP tools for CCP:

  • ctx_session status — show current session state (~400 tokens)
  • ctx_session load — restore previous session (cross-chat memory)
  • ctx_session task "description" — set current task
  • ctx_session finding "file:line — summary" — record key finding
  • ctx_session decision "summary" — record architectural decision
  • ctx_session save — force persist session to disk
  • ctx_wrapped — generate savings report card in chat

Analytics

lean-ctx gain                   # Visual token savings dashboard
lean-ctx dashboard              # Web dashboard at localhost:3333
lean-ctx session                # Adoption statistics
lean-ctx discover               # Find uncompressed commands in shell history

Tips

  • The output suffix [lean-ctx: 5029→197 tok, -96%] shows original vs compressed token count
  • For large outputs, lean-ctx automatically truncates while preserving relevant context
  • JSON responses from curl/wget are reduced to schema outlines
  • Build errors are grouped by type with counts
  • Test results show only failures with summary counts
  • Cached re-reads cost only ~13 tokens

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.32%
按下载量换算29

Claude

30.37%
按下载量换算26

Cursor

18.92%
按下载量换算16

Gemini CLI

8.52%
按下载量换算7

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

未通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills