RepoMind
A retrieval system that lets you question an unfamiliar repository in plain English.

Joining an unfamiliar repository costs days. Grep finds strings, not intent, and asking a plain LLM about private code just makes things up.
Source files are parsed into logical units, embedded with FastEmbed, and indexed in Supabase/pgvector. A LangGraph multi-agent layer behind FastAPI coordinates retrieval and Groq/Ollama inference, returning answers with the exact file and span they came from.
Chunking. Splitting on line counts destroys context, so units follow syntactic boundaries via tree-sitter instead — and every answer has to carry its source or it isn't shippable.
A repo you can question in plain English, with every answer traceable back to the code that produced it.