惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
GbyAI
GbyAI
博客园 - 司徒正美
美团技术团队
Vercel News
Vercel News
IT之家
IT之家
U
Unit 42
Y
Y Combinator Blog
罗磊的独立博客
Microsoft Security Blog
Microsoft Security Blog
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
V
Visual Studio Blog
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
MyScale Blog
MyScale Blog
博客园 - 叶小钗
A
About on SuperTechFans
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
B
Blog RSS Feed

Show HN

Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap GitHub - noopolis/moltnet: Self-hostable chat network for AI agents. Pre-built bridges for Claude Code, Codex, and the Claws. Rooms, DMs, history. No Slack bots, no Matrix, no glue code.
GitHub - Entelligentsia/grove: Structural, byte-precise, ...
bonigv · 2026-06-24 · via Show HN

grove gives coding agents structural, byte-precise, token-cheap access to a codebase via tree-sitter — instead of reading whole files. One engine, seven tools, two faces (a human CLI grove <verb> and an MCP server grove serve), with grammars loaded at runtime from a WASM registry, so adding a language needs no recompile and no toolchain on the consumer.

grove in action — install + an agent answering a question with grove, no grep, no whole-file reads

(asciinema cast: docs/assets/grove_demo.cast — play it interactively with asciinema play docs/assets/grove_demo.cast.)

Why grove

Agents burn tokens and round-trips grep-ing and read-ing whole files to answer "where is this defined / what does it do / who calls it." grove replaces that with one symbol at a time, by exact bytes, behind a stable id the agent passes between turns.

  • Token-cheapoutline a 1700-line file as a skeleton; source one symbol's body, not the whole file. A map call returns a directory's definitions + references in one shot.
  • Byte-precise & stable — every result carries a symbol-id (<lang>:<relpath>#<name>@<line>, 1-based) you pass forward across turns.
  • One engine, two faces — the same Rust binary drives the CLI and an MCP server, so a human and an agent see the same thing.
  • Runtime grammars — all 27 official tree-sitter grammars load from a hosted WASM registry; new languages are a registry entry, not a recompile.

Not an LSP. grove is a syntactic, tree-sitter-powered shell for agents — not a semantic language server. It speaks MCP (not LSP), parses (doesn't analyze), and locates (doesn't refactor): no type inference, completion, rename, or type-resolved go-to-def. It's the cheap syntactic layer beneath where an LSP's semantics begin — complementary, not competitive. Full reasoning: Is grove an LSP?.

27 languages out of the box — one binary, grammars loaded at runtime from the hosted WASM registry:

Bash BashC CC++ C++C# C#Go GoJava JavaJavaScript JavaScriptJulia JuliaPHP PHPPython Python
Ruby RubyRust RustScala ScalaTypeScript TypeScriptTSX TSXAgda2CSS CSS2Embedded Template2Haskell Haskell2HTML HTML2
JSDoc2JSON JSON2OCaml OCaml2OCaml Interface OCaml Interface2CodeQL2Regex2Verilog2

2 minimal profile — core tools only (callers/definition degrade); full profile = all tools. <kbd> = no official logo. Profiles are data, not compiled in. See Languages & grammars.

See VISION.md for the product vision.

Quick start

# 1. install (one line — detects platform, verifies sha256)
curl -fsSL https://raw.githubusercontent.com/Entelligentsia/grove/main/install.sh | sh

# 2. wire it into a project (in the project root)
grove init

grove init detects the project's languages, auto-fetches their grammars, and writes .mcp.json (the tools exist) + a CLAUDE.md steering directive (the agent reaches for grove instead of grep) + grove.lock. That's it — your agent now has structural sight. Other install channels (Homebrew, npm, cargo, agent skill) and --as mcp|skill|both are in Install and Setup.

As an agent skill (Claude Code, Cursor, Codex, Cline, …): npx skills add Entelligentsia/grove — the skill self-installs the binary on first use if it's missing. See Setup.

Evaluated on real codebases

The eval is Entelligentsia/grove-testbench: it runs the same agent (Claude) on the same prompt with grove off (baseline) and grove on (grove) across 10 large, popular, grammar-backed codebases, and measures the impact on context tokens, wall-clock time, turns, and answer quality — same agent both sides, grove the only variable. It's evidence-first (blind-judged answers verified against pinned source), not a highlight reel; where grove regresses, it's reported and filed as a fix.

grove cuts agent context ~90% on large repos

Early numbers — L2 callsites, run 2, grove v0.1.7 (1 run/side; full data in the testbench's FINDINGS.md):

  • Context tokens: median −93% (range −89% to −97% on the winners) — e.g. redis 2.81M → 83K (−97%), rails 1.98M → 128K (−94%), webpack 4.52M → 307K (−93%), django 1.40M → 95K (−93%), tokio 1.22M → 98K (−92%), hugo 4.52M → 377K (−92%), laravel 3.76M → 432K (−89%).
  • Tool calls: median −91% (range −77% to −96%) — fewer, sharper hops instead of grepping and whole-file reads.
  • Wall-clock: median −64% (range −48% to −82%) where comparable.

Honest caveat: grove is not a universal win yet — on spring-boot it regressed (+36% context, slower) for the L2 callsites task; that's tracked in the testbench's GROVE-ISSUES.md. The other two charted repos in the testbench are TypeScript and bitcoin (tool calls −96% / −59%; their baseline context was delegated to subagents so isn't on the token chart). The full per-repo breakdown, methodology, and raw runs: Entelligentsia/grove-testbench.

The tools

Command What it returns
outline grove outline <file> a file's definition skeleton (kind · name · parent · signature · id)
symbols grove symbols <dir> --name <n> repo-wide symbol search — --name is exact, --name-contains for substring
source grove source <id> one symbol's full source — no whole-file read
check grove check <file> ERROR / MISSING nodes — post-edit syntax check (exit 1 if any)
callers grove callers <name> -d <dir> call sites of a symbol, each with its enclosing function
map grove map <dir> directory dependency graph: definitions + outgoing references, no bodies
definition grove definition <name> / --at <f:l:c> go-to-def, by name or from a usage position

Add --json to any command for the agent-facing shape. Full reference + examples: Tools.

Documentation

Status

Pre-1.0. callers/definition are name-based (no receiver-type resolution); 12 languages ship a minimal profile (core tools only); no incremental reparse yet. Details and the rest of the roadmap: Roadmap.