From context-mode
Indexes local files into a persistent FTS5 knowledge base for later snippet retrieval via search queries. Useful for projects with large codebases that need focused context without rereading raw files.
How this skill is triggered — by the user, by Claude, or both
Slash command
/context-mode:ctx-indexThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Index local project content for later search.
Index local project content for later search.
ctx_index MCP tool when it is available.path, not large inline content, so file bytes do not enter the conversation.ctx_index({
path: ".",
source: "project:<name>",
maxDepth: 5,
maxFiles: 200
})
context-mode index . --source project:<name>
ctx_search({ source: "project:<name>", queries: ["..."] })
--exclude or exclude for project-specific noisy paths.maxFiles above 500.npx claudepluginhub davidwuchn/context-mode7plugins reuse this skill
First indexed Jun 3, 2026
Showing the 6 earliest of 7 plugins
Indexes local files into a persistent FTS5 knowledge base for later snippet retrieval via search queries. Useful for projects with large codebases that need focused context without rereading raw files.
Sets up and optimizes Cursor codebase indexing for @Codebase semantic search. Configures .cursorignore files, verifies status, and details embedding workflow.
Indexes local files and searches them using BM25, vector embeddings, and hybrid reranking. Includes MCP mode for tool integration.