What problem does it solve? It keeps code search and Q&A entirely on your own machine, so repository content and tokens never leave for a hosted API while still giving you semantic search over the codebase. ## Core Features & Use Cases - Semantic code search: Builds a local vector index with nomic-embed-text and answers queries via three MCP tools (search_code, index_status, index_refresh) that return file:line hits with short excerpts. - Local chat sidecar: Runs qwen2.5-coder through Ollama for cheap questions, plus a localgpu shell command that launches a separate Claude Code session against a local Anthropic-to-Ollama proxy. - VRAM discipline: Manages an 8 GB GPU with OLLAMA_MAX_LOADED_MODELS=1 and tuned keep-alive values so the embed and chat models never fight for memory. - Use Case: Ask "where is retry logic handled" without knowing the symbol name, get ranked file:line hits from the local index, then Read only the ranges you need. ## Quick Start Ask the assistant to index this repository with localgpu and then search the local index for how authentication is implemented.