recall

Solid

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.

Data & Documents 57 stars 3 forks Updated 4 days ago

Install

View on GitHub

Quality Score: 77/100

Stars 20%
59
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
0
Description 5%
100

Skill Content

# Recall — Find What Was Said When Joel references something vaguely, don't guess — fan out across all memory sources and find it. ## Trigger Detection Phrases that indicate a recall is needed (case-insensitive): - "from earlier", "earlier today", "earlier this week" - "remember when", "remember that", "you mentioned" - "what we discussed", "what we talked about", "the conversation about" - "that thing with", "the thing about", "what was that" - "did we ever", "have we", "wasn't there" - "last session", "the other day", "yesterday" - "correlate with", "connect to what we" - Any vague pronoun reference to past context ("those photos", "that idea", "the notes") **Key principle**: If you'd have to guess what "earlier" or "that" refers to, you need recall. ## Fan-Out Search Pattern Search these sources **in parallel** where possible, with timeouts on each: ### 1. Today's Daily Log (fastest, most likely) ```bash # Always check first — most "from earlier" references are same-day cat ~/.joelclaw/workspace/memory/$(date +%Y-%m-%d).md ``` ### 2. Recent Daily Logs (if today's doesn't have it) ```bash # 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).md ``` ### 3. Curated Memory ```bash cat ~/.joelclaw/workspace/MEMORY.md ``` Search for keywords from the vague reference. ### 4. Session Transcripts Use the `session_context` tool to search recent sessions: ``` sessions(limit: 10) # fin...

Details

Author
joelhooks
Repository
joelhooks/joelclaw
Created
3 months ago
Last Updated
4 days ago
Language
TypeScript
License
None

Similar Skills

Semantically similar based on skill content — not just same category