.claude/skills/recall/SKILL.md
--- name: recall description: Semantic memory recall using FTS5 and Chroma. Use PROACTIVELY whenever the user asks about past events, themes, conversations, or when historical context would enrich a response. Trigger words: remember, when did we, what did we talk about, last time, before, previously, that conversation, that time, history, past, recall. context: fork allowed-tools: - Bash - Read --- # Semantic Memory Recall This skill searches through semantic memory indexes for associative
npx skillsauth add claudeaceae/samara-main .claude/skills/recallInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill searches through semantic memory indexes for associative recall of past conversations, themes, and context.
Use proactively when:
Fast keyword matching with BM25 ranking.
~/.claude-mind/system/bin/memory-index search "query" [limit]
Best for: Specific terms, names, dates, exact phrases
Embedding-based similarity search - finds related content even with different wording.
~/.claude-mind/system/bin/chroma-query "query" [n_results]
Best for: Themes, concepts, "conversations like X", finding related discussions
Determine query type:
Run searches:
# Keyword search (FTS5)
~/.claude-mind/system/bin/memory-index search "coffee shops" 10
# Semantic search (Chroma)
~/.claude-mind/system/bin/chroma-query "conversations about morning routines" 5
# For comprehensive recall, run both
~/.claude-mind/system/bin/memory-index search "project planning" 5
~/.claude-mind/system/bin/chroma-query "discussions about work priorities and goals" 5
When presenting recalled memories:
User: "What did we talk about when I was at that coffee shop?"
# Semantic search for coffee shop conversations
~/.claude-mind/system/bin/chroma-query "coffee shop conversation" 5
# Keyword backup
~/.claude-mind/system/bin/memory-index search "coffee" 5
User: "Remember that discussion about Q1 planning?"
# Semantic for the theme
~/.claude-mind/system/bin/chroma-query "Q1 planning discussion goals priorities" 5
# Keyword for specifics
~/.claude-mind/system/bin/memory-index search "Q1" 5
User: "What have I said about my work situation?"
# Broad semantic search
~/.claude-mind/system/bin/chroma-query "work job career situation feelings" 10
# Follow up with specific terms found
~/.claude-mind/system/bin/memory-index search "specific_term_found" 5
Both systems index:
Results include source type and date for context.
development
# /webhook --- name: webhook description: Manage webhook sources - list, add, test, and view incoming events context: fork triggers: - webhook - add webhook - create webhook - webhook setup - incoming webhooks --- Manage the webhook receiver system. Use this skill to add new webhook sources, test existing ones, and view incoming events. ## What You Can Do 1. **List sources** - Show all registered webhook sources 2. **Add source** - Create a new webhook source with secure secret 3.
testing
Check crypto wallet balances, transaction history, and addresses
testing
# /voice-call - FaceTime Voice Calling Place and receive FaceTime Audio calls with live transcription and voice/text responses. ## Quick Start ```bash # Full voice conversation (responds via FaceTime audio) ~/.claude-mind/system/bin/voice-call --voice-response # Call with text responses (via iMessage) ~/.claude-mind/system/bin/voice-call --text-response # Call a specific number ~/.claude-mind/system/bin/voice-call +15551234567 --voice-response ``` ## Prerequisites Run `audio-setup --check
tools
--- name: sync description: Check for drift between repo and running system. Use when checking if scripts or Samara are out of sync, verifying system integrity, or before/after rebuilds. Trigger words: sync, organism sync, check drift, system drift, repo sync. context: fork allowed-tools: - Bash - Read - Grep --- # Sync Skill Check for drift between the repo and running system, and optionally fix it. ## What This Does Runs the `sync-organism` script to detect differences between: - `~/