telexed ~ c / 3694eb62-0c2radar:40 · agent_toolLIVE
← back
NO.
#3694eb62
Topic
AGENTS & TOOLS
Source
Hacker News · MCP Server
Published
2026-02-11 13:10:23
Importance
★ 4/10 — radar 40
`CodeRLM`: tree-sitter code indexing for LLM coding agents
FIG-3691:1

`CodeRLM`: tree-sitter code indexing for LLM coding agents

Code search is moved from file walking to symbol lookups, caller tracing, and exact impl fetches. Early results show faster exploration and better semantic bug-finding, but Rust build setup still blocks broad adoption.

[ KEY POINTS ]
  1. A Rust server indexes repos with tree-sitter, builds symbol and cross-ref tables, then exposes init, structure, search, impl, callers, and grep APIs.
  2. Supported symbol parsing covers Rust, Python, TypeScript, JavaScript, and Go; other files still remain visible in the tree and searchable via grep.
  3. The reported comparison finished planning in about 3 minutes with indexing versus 8 minutes with native file tools, and surfaced duplicate names plus orphaned code.
  4. It ships as a Claude Code plugin with hooks plus a zero-dependency Python CLI wrapper, but still requires a Rust toolchain and separate server process.
Originalgithub.com/JaredStewart/coderlm/blob/main/server/REPL_to_API.mdRead original →

// related