From context-mode
Index local files/directories into context-mode's persistent FTS5 knowledge base for later search retrieval.
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 aribaskagan/context-mode12plugins reuse this skill
First indexed Jun 3, 2026
Showing the 6 earliest of 12 plugins
Index local files/directories into context-mode's persistent FTS5 knowledge base for later search retrieval.
Indexes the current project for optimized search with QMD semantic search and fast file suggestions. Run when entering a new codebase or after significant changes. Saves 60-80% tokens on exploration tasks.
Indexes local files and searches them using BM25, vector embeddings, and hybrid reranking. Includes MCP mode for tool integration.