Help us improve
Share bugs, ideas, or general feedback.
From claude-rag
Queries RAG database of conversation history to answer questions about past work, synthesizing responses with citations to sessions, tools, dates, and code snippets.
npx claudepluginhub thisisyoyodev/claude-plugins --plugin claude-ragHow this skill is triggered — by the user, by Claude, or both
Slash command
/claude-rag:askThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Answer the user's question using RAG context: "$ARGUMENTS"
Searches Cognis memory for past work, sessions, architectural decisions, and team knowledge using user/repo scopes via Node script.
Searches persistent cross-session memory database (claude-mem) to retrieve past work, decisions, and context. Use when user asks about prior sessions or solutions.
Searches past conversations before answering, guessing, or treating topics as new. Avoids reinventing solutions by recalling prior decisions, patterns, and gotchas.
Share bugs, ideas, or general feedback.
Answer the user's question using RAG context: "$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"}}'
Search the RAG database for relevant context:
curl -s -X POST <endpoint>/api/v1/search \
-H "Content-Type: application/json" \
-d '{"query": "<user_question>", "limit": 10, "threshold": 0.4}'
Synthesize an answer based on the search results:
Structure the response:
If insufficient context is found: