Remix.run Logo
robertjpayne a day ago

Cursor no longer indexes your codebase.

arendtio 6 hours ago | parent | next [-]

Do you know when they stopped and why?

EDIT - AI says:

Cursor seems to have intentionally dropped semantic/embedding-based codebase indexing. Their explanation is that newer coding agents are now good enough at searching repos directly. They can grep in parallel, inspect directories, read likely files, and refine the search themselves. Cursor says this now works as well or better for most cases. [1]

So the architecture shifted from something like “chunk → embed → vector DB → retrieve” to “local search index/ripgrep → agent explores.” There is still an index, but it’s a conventional local search index. No embeddings are involved in that retrieval path. [1]

The interesting part is that Cursor was still reporting a ~12.5% accuracy gain from semantic indexing in January 2026. [2] So this looks less like “semantic search never worked” and more like agentic search improving fast enough that the extra infrastructure stopped being worth it.

[1] https://forum.cursor.com/t/what-do-you-think-about-cursor-re...

[2] https://cursor.com/blog/secure-codebase-indexing

jackjeff a day ago | parent | prev [-]

Oh. Really? I guess that was not such an advantage after all… still cursor fast models are so much faster than what you get in Claude/codex.

crazylogger a day ago | parent [-]

Assuming there is an index, agent still needs to write queries against the index to get any information from it - might as well grep!