Samara-main search-memory
Search through memory files - learnings, decisions, observations, questions, episodes, reflections. Use when looking for past insights, recalling why a decision was made, finding what was learned about a topic, or searching conversation history. Trigger words: memory, remember, recall, search, find, when did, what did I learn, past.
install
source · Clone the upstream repo
git clone https://github.com/claudeaceae/samara-main
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/claudeaceae/samara-main "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.claude/skills/search-memory" ~/.claude/skills/claudeaceae-samara-main-search-memory && rm -rf "$T"
manifest:
.claude/skills/search-memory/SKILL.mdsource content
Memory Search
Search through accumulated memory files for past learnings, decisions, observations, and episodes.
Memory Locations
| File | Contains |
|---|---|
| Technical and personal learnings |
| Observations about E, world, patterns |
| Decisions made and rationale |
| Open questions and ponderings |
| Everything about E |
| Daily episode logs |
| Dream cycle outputs |
Search Strategy
-
Get the query: What is the user looking for?
-
Determine scope:
- Specific file (learnings about X)
- All memory files
- Date range (episodes from last week)
-
Search methods:
# Search all memory files grep -rni "search term" ~/.claude-mind/memory/ # Search specific file grep -ni "search term" ~/.claude-mind/memory/learnings.md # Search episodes by date ls ~/.claude-mind/memory/episodes/ cat ~/.claude-mind/memory/episodes/2025-01-*.md # Search reflections grep -rni "search term" ~/.claude-mind/memory/reflections/
- Present findings: Show relevant excerpts with context and dates
Output Format
When presenting results:
- Include the date of each finding
- Show enough context to understand the entry
- Group by source file if searching multiple
- Highlight the most relevant matches first
Example Queries
- "What did I learn about AppleScript?" → Search learnings.md
- "Why did we choose X over Y?" → Search decisions.md
- "What happened last Tuesday?" → Check episodes/2025-01-XX.md
- "What do I know about E's preferences?" → Read about-e.md