shine-vector-search
Store and retrieve semantic memories using Qdrant MCP vector database. Enables cross-session knowledge recall.
<objective>
Manage semantic vector memory via Qdrant MCP:
Store mode (/shine-vector-search store <topic>):
- Collect the key information/findings from the current session.
- Generate a semantic embedding via the Qdrant MCP.
- Store with metadata: topic, timestamp, source files, confidence.
- Confirm storage with ID and summary.
Recall mode (/shine-vector-search recall <query>):
- Search Qdrant for semantically similar past entries.
- Return top 5 matches with relevance score, timestamp, and source.
- Present as a structured table with inline previews.
Requirements:
- Qdrant MCP must be connected:
claude mcp add qdrant --command "npx -y @qdrant/mcp-server-qdrant" - Qdrant server running:
docker run -p 6333:6333 qdrant/qdrant
If Qdrant is not available, fall back to claude-mem plugin for basic text search across memory files, or grep on ~/.claude/memory/.
</objective>