prompt-evaluation-runn…
Use when evaluating prompts, LLM outputs, red-team suites, or model behavior with local eval configs and safe provider/cost controls.
Use when querying, ingesting, or maintaining a local RAG MCP corpus for semantic document retrieval with privacy controls.
$ npx -y skills add yeaight7/agent-powerups --skill local-rag-mcp --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/local-rag-mcpContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when querying, ingesting, or maintaining a local RAG MCP corpus for semantic document retrieval with privacy controls.
name: local-rag-mcp description: Use when querying, ingesting, or maintaining a local RAG MCP corpus for semantic document retrieval with privacy controls.
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.
1. **Identify need** — determine whether the query requires semantic retrieval (conceptual, cross-document) vs. standard grep/glob (exact pattern, single file).
2. **Check configuration** — verify the connection to the local RAG MCP server. If it fails, surface the error rather than falling back silently.
3. **Inventory corpus** — use status or list tools to see what's already indexed before ingesting anything.
4. **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.
5. **Query strategy**:
6. **Expand around hits** — if a top result lacks surrounding context, fetch neighboring chunks before drawing conclusions.
7. **Synthesize with citations** — in your response, distinguish between retrieved evidence (cite source and chunk) and your own inference.
8. **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.
Curated power-ups for coding agents: skills, slash commands, MCP configs, hooks, AGENTS.md templates, and workflows for serious software engineering. Claude Code, Codex, Antigravity CLI, Cursor and more
Repo: yeaight7/agent-powerups
Use when evaluating prompts, LLM outputs, red-team suites, or model behavior with local eval configs and safe provider/cost controls.
Use when creating or reviewing red-team eval plugins, attack templates, grader rubrics, safety fixtures, or model-risk test metadata.
Use when designing, running, debugging, or hardening deterministic eval suites for agent skills, prompts, tool workflows, or MCP-backed cases.
Use when designing tool definitions for a new agent or subagent, an agent shows high retry rates, ambiguous tool invocations, or silent failures, or an…
Use when routing a prompt to a local provider CLI for a second opinion, review, or plan -- you are about to call a provider directly, need the response saved…
Use when starting work in an unfamiliar area of a codebase, spawning a subagent that needs targeted file context, a first search pass missed the relevant file,…