Skip to main content

ctx-search

Search context-mode's persistent FTS5 knowledge base for previously indexed local project content, documentation, or session memory. Trigger: /context-mode:ctx-search

Jump to install

Source facts

Repository
TuYv/ccpm
Last source activity
June 28, 2026 at 00:16
Detected SKILL.md language
English
Stars
1
Forks
2

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

File Explorer
2 files

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
name
ctx-search
description
Search context-mode's persistent FTS5 knowledge base for previously indexed local project content, documentation, or session memory. Trigger: /context-mode:ctx-search
user-invocable
true
# Context Mode Search Search indexed content without rereading raw sources into conversation context. ## Instructions 1. Prefer the `ctx_search` MCP tool when it is available. 2. Batch all related questions in one `queries` array. 3. Scope with `source` when the user names a project or indexed label. 4. Use short, specific queries of two to four technical terms. ```javascript ctx_search({ source: "project:<name>", queries: ["authentication middleware", "token refresh"], limit: 5 }) ``` 5. If MCP tools are unavailable, fall back to the CLI: ```bash context-mode search "authentication middleware" --source project:<name> --limit 5 ``` 6. If the index is empty, tell the user to run `/context-mode:ctx-index` or `context-mode index <path>` first.
View on GitHub