Help us improve
Share bugs, ideas, or general feedback.
From claude-rag
Configures Claude RAG plugin settings: connection (local Docker/cloud endpoint/API key), capture (prompts/tools/agents), RAG modes (off/manual/auto/aggressive with thresholds), privacy redactions/exclusions, config display/reset, and health checks.
npx claudepluginhub thisisyoyodev/claude-plugins --plugin claude-ragHow this skill is triggered — by the user, by Claude, or both
Slash command
/claude-rag:configThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Configure the Claude RAG plugin settings.
Guides OpenRAG SDK integration into Python or JavaScript/TypeScript apps with installation via pip/npm/uv/yarn, env var/API key config, client setup, and code examples for chat/search.
Provides foundational configuration context. Invoked via /Config or when Claude needs to reference its own configuration setup.
Share bugs, ideas, or general feedback.
Configure the Claude RAG plugin settings.
Read current config:
cat ~/.claude/plugins/claude-rag/config.json 2>/dev/null || echo '{"connection":{"endpoint":"https://api.clauderag.io"}}'
If "$ARGUMENTS" matches a section name, go directly to that section. Otherwise, show the main menu.
Use AskUserQuestion:
Use AskUserQuestion:
If Cloud: ask for endpoint URL and API key. Write updated config.
Use AskUserQuestion with multiSelect:
Then ask for excluded tools (comma-separated, default: "AskUserQuestion").
Use AskUserQuestion:
If auto or aggressive, ask for:
Use AskUserQuestion with multiSelect:
Ask for additional exclusion patterns if needed.
Read and display the current config.json formatted nicely.
Confirm with AskUserQuestion, then write the default config.
curl -s <endpoint>/health
Show result and status.
Always read the existing config first, merge changes, then write back.
Config path: ~/.claude/plugins/claude-rag/config.json
mkdir -p ~/.claude/plugins/claude-rag
Write the full merged JSON config.