From tool-integrations
Manages a local RAG MCP corpus for semantic search, including ingestion, querying, and privacy-aware handling.
How this skill is triggered — by the user, by Claude, or both
Slash command
/tool-integrations:local-rag-mcpThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use when the task requires semantic search over a local document corpus and an appropriate local RAG MCP server is available. Prefer standard grep/glob for simple pattern matching — RAG adds value for conceptual queries and cross-document synthesis.
Use when the task requires semantic search over a local document corpus and an appropriate local RAG MCP server is available. Prefer standard grep/glob for simple pattern matching — RAG adds value for conceptual queries and cross-document synthesis.
apx mcp list or check MCP settings).Identify need — determine whether the query requires semantic retrieval (conceptual, cross-document) vs. standard grep/glob (exact pattern, single file).
Check configuration — verify the connection to the local RAG MCP server. If it fails, surface the error rather than falling back silently.
Inventory corpus — use status or list tools to see what's already indexed before ingesting anything.
Ingest (only if necessary) — ingest only files explicitly approved for this corpus. Include clear source metadata (file path, ingest timestamp). Exclude: .env files, credential files, SSH keys, and files outside the workspace.
Query strategy:
Expand around hits — if a top result lacks surrounding context, fetch neighboring chunks before drawing conclusions.
Synthesize with citations — in your response, distinguish between retrieved evidence (cite source and chunk) and your own inference.
Clean up — delete stale or incorrectly ingested sources when requested; do not accumulate unrelated documents.
The local RAG server typically exposes tools along these lines:
Exact tool names and schemas vary by implementation. Read your server's tool list before assuming names.
.env files into the local RAG store.references/rag-tool-model.mdGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Resolves in-progress git merge or rebase conflicts by analyzing history, understanding intent, and preserving both changes where possible. Runs automated checks after resolution.
2plugins reuse this skill
First indexed Jul 28, 2026
npx claudepluginhub yeaight7/agent-powerups --plugin tool-integrations