Loading...
Loading...
Fan-out search across all memory sources when context is unclear or vaguely referenced. Triggers on: 'from earlier', 'remember when', 'what we discussed', 'that thing with', 'the conversation about', 'did we ever', 'what happened with', 'you mentioned', 'we talked about', 'earlier today', 'last session', 'the other day', or any vague reference to past context that needs resolution before the agent can act.
npx skill4agent add joelhooks/joelclaw recall# Always check first — most "from earlier" references are same-day
cat ~/.joelclaw/workspace/memory/$(date +%Y-%m-%d).md# Yesterday and day before
cat ~/.joelclaw/workspace/memory/$(date -v-1d +%Y-%m-%d).md
cat ~/.joelclaw/workspace/memory/$(date -v-2d +%Y-%m-%d).mdcat ~/.joelclaw/workspace/MEMORY.mdsession_contextsessions(limit: 10) # find recent session IDs
session_context(session_id: "...", query: "what was discussed about <topic>")# Keyword search across Vault
grep -ri "<keywords>" ~/Vault/ --include="*.md" -l | head -10slog tail --count 20 # recent infrastructure changes# Check for images/audio that were processed
ls /tmp/joelclaw-media/ 2>/dev/null# Memory proposals, loop state, etc.
redis-cli LRANGE memory:review:pending 0 -1 2>/dev/nulltimeout 5# Good
timeout 5 grep -ri "keyword" ~/Vault/ --include="*.md" -l | head -10
# Bad — can hang indefinitely
grep -ri "keyword" ~/Vault/ --include="*.md"session_context/tmp/joelclaw-media/