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 mksglu/context-mode --plugin context-modeSearches persistent FTS5 knowledge bases of previously indexed project content, documentation, or session memory via MCP tool or CLI.
Indexes project with QMD for semantic search and cartographer for codebase maps, enabling fast file suggestions. Run on new codebases or after changes to save 60-80% tokens on exploration.
Sets up and optimizes Cursor codebase indexing for @Codebase semantic search. Configures .cursorignore files, verifies status, and details embedding workflow.