Chonks — Development skill for Claude Code
Local code retrieval for codebases too big to grep.
How to install Chonks
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open mgonzalez01/Chonks and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
What Chonks does
Local code retrieval for codebases too big to grep.
Alternatives in Development
- Epic Claim — Claim an epic issue, stamp coordination state, and sync local ownership 243.5k ★
- Add Portal — /add-portal - Generate a Job-Portal Search Skill for Your Local Market 36.6k ★
- Ccusage — CLI for analyzing Claude Code/Codex usage from local JSONL files 11.8k ★
README
Chonks
Local code retrieval for codebases too big to grep
Chonks indexes a large codebase into one local SQLite file and serves it to Claude Code, or any MCP harness, as retrieval tools. There is no LLM inside the pipeline. Retrieval is embeddings, BM25, and graph traversal, and the coding agent does the thinking.
The index is built, not live. Re-indexing is explicit and incremental, updating from the changed and deleted chunks, with a full rebuild above 20% churn. Every MCP response carries the index age, so an agent can see how old its answer is. There is no file watcher
Agentic search with grep, glob, and repo maps works well until the codebase outgrows it. A large codebase has tens of thousands of files, coupling that crosses language boundaries, and names that cannot be guessed, so at that scale an agent spends its context window walking directories. Chonks gives it sharper questions to ask:
- "Where is the thing that does X?" Hybrid semantic and keyword search over AST-boundary chunks (
codebase_search). - "Collect everything related to this." Iterative graph-expansion retrieval for multi-hop, cross-subsystem questions (
codebase_research). - "Who uses this symbol?" and "Where is it defined?" Structural lookups over a precomputed typed cross-reference graph (
find_usages, `fi
Related Skills
LearningSkill
Meta-learning tutor system for Claude Code & Web — cognitive-science-driven (Bjork, Sweller, Brown) skills for
Recallnest
One memory, every terminal. Shared memory layer for any MCP client — Claude Code, Codex, Kimi, Antigravity (ag
Vault OS
Local-first Obsidian memory OS for Claude Code and Codex: trust-aware L0-L3 retrieval, isolated zones, 150 ski
Lazycodex
The one and only agent harness for complex codebases. Project memory, planning, execution, and verified comple
Tutor Skills
Transform docs or codebases into Obsidian StudyVaults with interactive quizzes
Coding Agents Workshop
Workshop: Optimizing Codebases for Agents — Coding Agents Conference, March 3, 2026
Related Agents
File Search
Fast file and text search agent. Use when searching across a wide range of files by name patterns, content gre
Brain Retrieval Engineer
Retrieval engineer — six retrieval strategies (hybrid, graph-enhanced vector, entity-anchored local, guarded T
Cross Repo Scout
Searches sibling repos under .claude/project-registries.json sibling_repos[] for prior solutions. Local-first