Semantic search across all past conversations, tool results, AI outputs, and sub-agent activity stored in the RAG database
From claude-ragnpx claudepluginhub thisisyoyodev/claude-plugins --plugin claude-ragThis skill is limited to using the following tools:
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Enables AI agents to execute x402 payments with per-task budgets, spending controls, and non-custodial wallets via MCP tools. Use when agents pay for APIs, services, or other agents.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Search the RAG database for content matching the user's query: "$ARGUMENTS"
Read the plugin config to get the backend endpoint:
cat ~/.claude/plugins/claude-rag/config.json 2>/dev/null || echo '{"connection":{"endpoint":"https://api.clauderag.io"}}'
Execute the search query against the backend:
curl -s -X POST <endpoint>/api/v1/search \
-H "Content-Type: application/json" \
-d '{"query": "<user_query>", "limit": 10, "threshold": 0.5}'
Display results in a clear, organized format:
If the user provides filters in their query, parse them:
{"filters": {"project_id": "X"}}{"filters": {"is_sub_agent": true}}{"filters": {"content_types": ["tool_call", "tool_result"]}}{"filters": {"tool_names": ["Bash"]}}{"filters": {"tool_categories": ["file"]}}Show total results count and search latency at the bottom.