Recall — Search Observational Memory
Retrieve and display observations from the observational memory system.
Steps
- •
Determine the memory directory by running:
bashpython3 -c "import os; print(os.path.expanduser('~/.claude/projects/' + os.getcwd().replace('/','-') + '/memory/'))" - •
Read the observations file (
observations.md) from that directory. - •
If no arguments provided (
$ARGUMENTSis empty):- •Display all observations, formatted cleanly
- •Show stats: total size, approximate token count, date range covered
- •
If a search topic is provided (
$ARGUMENTS):- •Search through observations for entries matching the topic
- •Show matching observations with their dates and context
- •If no matches found, say so and suggest related topics from the observations
- •
Also check
MEMORY.mdin the same directory for any related curated facts. - •
Present the results in a clear, organized format.