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.
How 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"
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:
npx claudepluginhub thisisyoyodev/claude-plugins --plugin claude-ragSearches claude-mem's persistent cross-session memory database to retrieve work from previous sessions. Follows a search-filter-fetch workflow to minimize token usage.
Searches Cognis memory for past work, sessions, architectural decisions, and team knowledge using user/repo scopes via Node script.
Recalls past work, decisions, error solutions, and project history via a 3-layer memory search workflow for token-efficient retrieval.