MCP HubMCP Hub
스킬 목록으로 돌아가기

lean-ctx

yvgude
업데이트됨 2 days ago
6 조회
2,173
231
2,173
GitHub에서 보기
개발aimcp

정보

LeanCTX는 58개의 MCP 도구, 95개 이상의 셸 패턴, 그리고 18개 언어에 대한 tree-sitter AST 파싱을 활용하여 LLM 컨텍스트를 최대 99%까지 압축하는 컨텍스트 런타임입니다. 이 스킬은 AI 에이전트 내에서 파일 읽기, 셸 명령어 실행, 코드 검색, 디렉토리 탐색을 위해 설계되었습니다. 스킬은 미설치 시 자동 설치되며, 세션 간 메모리를 활용한 적응형 파일 읽기 기능을 제공합니다.

빠른 설치

Claude Code

추천
기본
npx skills add yvgude/lean-ctx -a claude-code
플러그인 명령대체
/plugin add https://github.com/yvgude/lean-ctx
Git 클론대체
git clone https://github.com/yvgude/lean-ctx.git ~/.claude/skills/lean-ctx

Claude Code에서 이 명령을 복사하여 붙여넣어 스킬을 설치하세요

문서

LeanCTX — Context Runtime for AI Agents

LeanCTX optimizes LLM context through 58 MCP tools, 95+ 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, run the one-command setup (installs shell hook + editor wiring + rules + skills):

lean-ctx setup

lean-ctx supports two integration styles:

  • CLI-redirect (preferred when shell access exists): no MCP tool schema overhead.
  • MCP (required for some IDE extensions): cached reads + tools via MCP.

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 cursor --mode cli-redirect   # CLI-first (no MCP schema overhead)
lean-ctx init --agent claude --mode cli-redirect   # CLI-first (Claude Code)
lean-ctx init --agent codex --mode cli-redirect    # CLI-first (Codex)
lean-ctx init --agent opencode --mode cli-redirect # CLI-first (OpenCode)

lean-ctx init --agent copilot                      # MCP (VS Code / Copilot)
lean-ctx init --agent jetbrains                    # MCP (JetBrains)
lean-ctx init --agent windsurf                     # MCP/Hybrid (Windsurf)

Multi-Agent & Knowledge (v2.7.0+)

CLI (works in CLI-redirect and MCP setups):

lean-ctx knowledge remember "value" --category <c> --key <k>
lean-ctx knowledge recall "query"
lean-ctx knowledge search "query"
lean-ctx knowledge export [--format json|jsonl|simple] [--output <path>]
lean-ctx knowledge import <path> [--merge replace|append|skip-existing] [--dry-run]
lean-ctx knowledge remove --category <c> --key <k>

lean-ctx session task "what you're doing"
lean-ctx session finding "what you found"
lean-ctx session decision "what you decided"
lean-ctx session save

If MCP is enabled for your IDE, the same capabilities are also available as MCP tools (ctx_knowledge, ctx_session, ctx_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_session role — list/switch agent roles (governance)
  • ctx_session budget — show budget status vs role limits
  • ctx_session slo — show SLO status/violations (value=reload|history|clear)
  • ctx_session diff — compare two sessions (value="<id_a> <id_b> [json]")
  • ctx_session verify — show output verification statistics
  • ctx_session episodes — episodic memory (value=record | "search <q>" | "file <path>" | "outcome <label>")
  • ctx_session procedures — procedural memory (value=detect | "suggest <task>")
  • ctx_intent — intent classification + model routing (returns dimension/tier/reasoning)
  • ctx_graph build — index code into unified graph
  • ctx_graph related — find connected files via graph
  • ctx_graph symbol — lookup symbol definitions/usages
  • ctx_graph impact — blast radius analysis
  • ctx_graph enrich — add commits, tests, knowledge to graph
  • ctx_graph context — task-based graph query for relevant context
  • 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

GitHub 저장소

yvgude/lean-ctx
경로: rust/src/templates
0
agentic-codingaiai-codingclaude-codecontext-engineeringcontext-layer

연관 스킬

qmd

개발

qmd는 BM25, 벡터 임베딩, 재순위화를 결합한 하이브리드 검색을 통해 로컬 파일을 색인화하고 검색할 수 있는 로컬 검색 및 색인화 CLI 도구입니다. 명령줄 사용과 Claude 통합을 위한 MCP(Model Context Protocol) 모드를 모두 지원합니다. 이 도구는 임베딩에 Ollama를 사용하고 색인을 로컬에 저장하여 터미널에서 직접 문서나 코드베이스를 검색하는 데 이상적입니다.

스킬 보기

subagent-driven-development

개발

이 스킬은 각 독립적인 작업마다 새로운 하위 에이전트를 배치하고 작업 사이에 코드 리뷰를 진행하여 구현 계획을 실행합니다. 이 리뷰 프로세스를 통해 품질 게이트를 유지하면서 빠른 반복 작업을 가능하게 합니다. 동일한 세션 내에서 대부분 독립적인 작업을 진행할 때 내장된 품질 검증과 함께 지속적인 진행을 보장하기 위해 사용하세요.

스킬 보기

mcporter

개발

mcporter 스킬은 개발자가 Claude에서 직접 Model Context Protocol(MCP) 서버를 관리하고 호출할 수 있도록 합니다. 이 스킬은 사용 가능한 서버를 나열하고, 인수를 사용해 해당 서버의 도구를 호출하며, 인증 및 데몬 생명주기를 처리하는 명령어를 제공합니다. 개발 워크플로우에서 MCP 서버 기능을 통합하고 테스트할 때 이 스킬을 사용하세요.

스킬 보기

adk-deployment-specialist

개발

이 스킬은 A2A 프로토콜을 사용하여 Vertex AI ADK 에이전트를 배포하고 오케스트레이션하며, AgentCard 검색, 작업 제출, 코드 실행 샌드박스 및 메모리 뱅크와 같은 지원 도구를 관리합니다. Python, Java 또는 Go 언어로 순차, 병렬 또는 루프 오케스트레이션 패턴을 갖춘 다중 에이전트 시스템 구축을 가능하게 합니다. Google Cloud에서 ADK 에이전트 배포 또는 에이전트 워크플로우 오케스트레이션을 요청받았을 때 사용하세요.

스킬 보기