Two-layer memory system with grep-based recall.
memory/MEMORY.md -- Long-term facts (preferences, project context, relationships). Always loaded into your context.memory/HISTORY.md -- Append-only event log. NOT loaded into context. Search it with memory_search.Use memory_search to find information across both memory files:
memory_search(query="keyword")
Returns matching lines with surrounding context, indicating which file each match came from.
Use memory_read to read a full memory file:
memory_read(file="memory")
memory_read(file="history")
memory_read(file="history", max_lines=50)
Use max_lines to read only the most recent entries from HISTORY.md.
Write important facts immediately using memory_save:
Old conversations are automatically summarized and appended to HISTORY.md when the session grows large. Long-term facts are extracted to MEMORY.md. You don't need to manage this.
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer