| name | knowledge |
| description | Index and search through MyPicoClaw memory, sessions, and site monitor findings (Lightweight RAG). |
| metadata | {"nanobot":{"emoji":"🧠","requires":{"bins":["grep","find"]}}} |
Knowledge Base (Lightweight RAG)
Search through your personal digital history.
Search Paths
All paths are relative to your workspace root (shown in your system prompt):
- Memory:
memory/
- Sessions:
sessions/
- Monitor Drops:
skills/monitor/findings/ (if enabled)
Capabilities
1. Keyword Search
Use grep to find relevant context in past sessions or memory files.
grep -rnEi "[Keyword]" memory/ sessions/
2. Chronological Retrieval
Find information by date.
find sessions/ -mtime -7 -name "*.json"
Workflow
- Query Analysis: Identify if the user is asking about something already discussed or "remembered".
- Context Retrieval: Run search commands to find the relevant snippets.
- Synthesis: Answer the user using the found context.
Tips
- If the search returns too many results, ask for more specific keywords.
- Always check
MEMORY.md first for high-level summaries.