Loading...
Loading...
Search conversation history and semantic memory to recall previous discussions, decisions, and context. Use when the user asks to "search memory", "what did we discuss", "remember when", "find previous conversation", "check history", or before starting work to recall prior decisions.
npx skill4agent add davila7/claude-code-templates memory-search# Install memory tools
git clone https://github.com/23blocks-OS/ai-maestro-plugins.git
cd ai-maestro-plugins && ./install-memory-tools.shReceive instruction -> Search memory -> Then proceed| Command | Description |
|---|---|
| Hybrid search (recommended) |
| Find conceptually related |
| Exact text matching |
| Code symbol matching |
| Only user messages |
| Only assistant messages |
| Mode | Best For |
|---|---|
| General search, most cases |
| Related concepts, different wording |
| Exact function/class names |
| Code identifiers across contexts |
# User asks to continue previous work
memory-search.sh "authentication"
# Find a specific component discussion
memory-search.sh "PaymentService" --mode term
# Find related design discussions
memory-search.sh "error handling patterns" --mode semantic
# Find code symbol references
memory-search.sh "processPayment" --mode symbolmemory-search.sh "feature" # What did we discuss?
docs-search.sh "feature" # What do docs say?
graph-describe.sh ComponentName # What is the structure?