Skip to main content

Intent-aware code-knowledge index for LLM agents, built on intent-db: index a repo once, query it by intent, cut the token cost of re-reading files.

Project description

intent-code

PyPI CI Python License: MIT

An intent-aware code-knowledge index for LLM agents, built on intent-db.

Index a repository once, then query it by intent so an agent reads only what it needs instead of re-reading the whole repo every session. The same search returns different results for the agent's current phase: debugging, extending, reviewing, or onboarding.

Why

LLM coding agents re-read files every session because they have no durable, queryable understanding of a codebase. intent-code builds that understanding once and keeps it fresh incrementally, so the expensive "read and synthesize" happens once per change and is reused across sessions.

It combines three established ideas:

  • A durable, LLM-maintained knowledge layer of gotcha and flow notes, in the spirit of Karpathy's LLM Wiki.
  • A tree-sitter symbol and dependency map ranked by PageRank, in the spirit of Aider's repo map.
  • Incremental indexing: only changed code is re-embedded, in the spirit of Cursor's Merkle indexing.

The retrieval engine is intent-db: documents are embedded once and a per-intent lens re-ranks results at query time, with a feedback loop that learns per-intent ranking from what the agent actually used.

How an agent uses it

One index, three ways to consume it (the same data, regenerated on every index):

  1. MCP (primary) for Claude Code and any tool-capable agent: code_map, code_search, code_read, code_context, code_flow, code_neighbors, note_put / note_get / note_list_stale, code_feedback, code_index. code_search finds where something is; code_read / code_context / code_flow answer how it works by returning full bodies and the call sequence, so the agent stops re-reading whole files.
  2. Committed markdown under docs/codemap/ (MAP.md, index.md, notes/): readable by any LLM or human, even without MCP, straight from a git clone.
  3. CLI --json for any agent that can run a shell command.

Install

uv tool install intent-code          # or: pipx install intent-code

Quickstart

cd your-repo
intent-code init .                   # builds the index, writes .mcp.json + protocol
# restart Claude Code -> the "code" MCP tools are available

Or use it directly:

intent-code index .
intent-code search "where is the retry handled" --intent debugging
intent-code map
intent-code neighbors your.module.Class.method --direction callers

# understand how code works, not just where it is
intent-code read your.module.handle_request           # full body, untruncated
intent-code context your.module.handle_request        # it + its callees, in call order
intent-code flow your.module.handle_request           # the ordered call sequence

Claude Code plugin

/plugin marketplace add harsharahul/intent-code
/plugin install intent-code

The plugin wires the MCP server, the /code-index and /code-note commands, and an optional PostToolUse freshness hook.

Use with GitHub Copilot or Gemini CLI

The same MCP server works with any agent that speaks MCP. init writes each agent's native config and the protocol into its instruction file:

intent-code init . --agent copilot   # .vscode/mcp.json + .github/copilot-instructions.md
intent-code init . --agent gemini    # .gemini/settings.json + GEMINI.md
intent-code init . --agent all        # claude + copilot + gemini at once

Writes are idempotent: instruction files get a marked managed block and JSON configs are key-merged, so re-running never clobbers your own content. The files init generates are excluded from the index, so the protocol is never indexed back into itself.

Keeping the index fresh

Freshness does not require git. Re-indexing is incremental (only changed files re-parse), and it stays current several ways:

  • Automatic (any agent, no git, no hook): a search polls the tree at query time and re-indexes what changed. A stat gate skips unchanged files, so the check is cheap, and it runs at most once per interval (default 2s). On by default; INTENT_CODE_AUTO_REFRESH=0 disables it and INTENT_CODE_REFRESH_TTL tunes the interval (raise it for very large monorepos).
  • Claude Code: the plugin's PostToolUse hook marks edited files dirty for an immediate pickup.
  • Git repos: intent-code install-hooks . adds commit/merge/checkout hooks that flag the index stale.
  • Any agent: the protocol also tells it to call code_index after edits.

Indexing multiple repositories

One index lives at the path you point init/serve-mcp at, and the walk skips every nested .git/ at any depth. Point at a single repo for that repo's index, or at a parent folder of several repos for one combined, cross-repo index.

In a combined index every result is tagged with its repository, and you can scope a search to one:

intent-code stats .                          # lists the repos and file counts
intent-code search "retry logic" --repo api  # only hits from the 'api' repo

Over MCP, pass filters={"repo": "api"} to code_search. The tag is the path of the nearest enclosing .git (deepest wins for nested repos and submodules), and . is the index root. Run index --full once to backfill tags on an index built before 0.2.2. Git hooks are per-repository, so the combined-parent case relies on the code_index path for freshness rather than hooks.

How it works

The index is a single intent-db SQLite file under .intentdb/ (add it to your .gitignore). Documents are tagged by layer:

  • symbol: a signature card per function/class/method (tree-sitter), with line span, content hash, and import/call edges.
  • chunk: AST-aware chunks for text or grammar-less files.
  • note: durable, human-authored gotcha and flow articles.

A dependency graph and PageRank ranking are derived from the symbol edges to produce the repo map and neighbors tracing. Re-indexing hashes each file and re-embeds only the symbols whose content changed.

BM25 hybrid search is always on, so exact symbol matches land regardless of which embedder is in use.

Embedder

The embedder auto-detects on every open: a local Ollama model (nomic-embed-text) when the server is reachable and holds the model, otherwise the zero-dependency hashing embedder. Hashing is lexical only, so conceptual queries are much weaker; the index still works, just less well.

If intent-code index finds Ollama running without the model, it fetches the model once and reports progress. Query paths never do: a search will not trigger a download.

Detection is not a one-off decision made when the index is created. If an index was built while Ollama was down, later commands report a mismatch status and intent-code index --full rebuilds under the better embedder, preserving notes (including their staleness tracking), relevance feedback and learned ranking weights.

intent-code stats .                    # embedder, embedder_status, remedy
intent-code index . --full             # adopt a newly available embedder
intent-code index . --no-pull-model    # never download automatically
Variable Effect
INTENT_CODE_EMBEDDER Force a spec, e.g. hashing:dim=512. Skips detection.
INTENT_CODE_AUTO_PULL 0 never downloads a model, 1 allows it from any path.

Benchmark

A token-spend benchmark ships in intent_code.eval. On the intent-db codebase, answering a five-question set used about 97% fewer input tokens than reading whole files to reach the answer (roughly 7.8k versus 227k), with the zero-dependency hashing embedder. A local embedding model improves which questions land in the top results.

python -m intent_code.eval.run /path/to/repo

Security and supply chain

Minimal runtime dependencies, official tree-sitter grammars, version bounds plus a hash-pinned lockfile, dependency auditing in CI, SHA-pinned GitHub Actions, and PyPI trusted publishing. See SECURITY.md.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

intent_code-0.2.4.tar.gz (61.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

intent_code-0.2.4-py3-none-any.whl (50.6 kB view details)

Uploaded Python 3

File details

Details for the file intent_code-0.2.4.tar.gz.

File metadata

  • Download URL: intent_code-0.2.4.tar.gz
  • Upload date:
  • Size: 61.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for intent_code-0.2.4.tar.gz
Algorithm Hash digest
SHA256 9f07706b7ca8b34eca171f7b11978615a681b2c16953f32bd2843266b22b9b84
MD5 083a9f06d00969302583e0428c445e81
BLAKE2b-256 d11dc573244fcef61a5f605e01e5b1141d758749f2fd3990be5079e45a2f6ea5

See more details on using hashes here.

Provenance

The following attestation bundles were made for intent_code-0.2.4.tar.gz:

Publisher: release.yml on harsharahul/intent-code

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file intent_code-0.2.4-py3-none-any.whl.

File metadata

  • Download URL: intent_code-0.2.4-py3-none-any.whl
  • Upload date:
  • Size: 50.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for intent_code-0.2.4-py3-none-any.whl
Algorithm Hash digest
SHA256 91731a8c265a12c4045b2f6f692e33b6fa57d2cafac57518c26b4ddf2cbec955
MD5 be1c8484799eb5c67b18203a3e931e63
BLAKE2b-256 fbf0ddb8a68e9fa262a3261f3d868f6bac49b9177c79a71d46b8e249a3b88b42

See more details on using hashes here.

Provenance

The following attestation bundles were made for intent_code-0.2.4-py3-none-any.whl:

Publisher: release.yml on harsharahul/intent-code

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page