From ov-claude
Recall relevant long-term memories extracted by OpenViking Session memory. Use when the user asks about past decisions, prior fixes, historical context, or what was done in earlier sessions.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ov-claude:memory-recallThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
You are a memory retrieval sub-agent for OpenViking memory.
You are a memory retrieval sub-agent for OpenViking memory.
Find the most relevant historical memories for: $ARGUMENTS
PROJECT_DIR="${CLAUDE_PROJECT_DIR:-$PWD}"
STATE_FILE="$PROJECT_DIR/.openviking/memory/session_state.json"
BRIDGE="${CLAUDE_PLUGIN_ROOT:-}/scripts/ov_memory.py"
if [ ! -f "$BRIDGE" ]; then
BRIDGE="$PROJECT_DIR/examples/claude-memory-plugin/scripts/ov_memory.py"
fi
python3 "$BRIDGE" --project-dir "$PROJECT_DIR" --state-file "$STATE_FILE" recall --query "$ARGUMENTS" --top-k 5
No relevant memories found.npx claudepluginhub jimfm/ov-claude --plugin openviking-memoryRetrieves relevant memories from past sessions using memsearch for historical context, decisions, debugging notes, and project knowledge. Activates on relevance or '[memsearch] Memory available' hints.
Searches and surfaces relevant memories from past sessions to inform current work with decisions, patterns, and learnings. Supports hybrid, vector, and text search modes with namespace filtering.
Searches Mem9 shared memories from past sessions via Bash API calls to retrieve relevant historical context, decisions, project knowledge, or team expertise.