context-engine
SKILL.md
Context-Engine
Search and retrieve code context from any codebase using hybrid vector search (semantic + lexical) with neural reranking.
Client- or provider-specific wrapper files should stay thin and defer to this document for shared MCP tool-selection and search guidance.
Quickstart
- Start with
searchfor most codebase questions. - Use
symbol_graphfirst for direct symbol relationships such as callers, definitions, importers, subclasses, and base classes. - Use
graph_queryonly if that tool is available and you need transitive impact, dependency, or cycle analysis; otherwise combinesymbol_graphwith targeted search. - Prefer MCP tools for exploration. Narrow grep/file-open use is still fine for exact literal confirmation, exact file/path confirmation, or opening a file you already identified for editing.
- Use
cross_repo_searchfor multi-repo questions. For public V1context_search, treatinclude_memories=trueas compatibility-only: it preserves response shape but keeps results code-only and may addmemory_note.