recall
The user wants to recall past context about: $ARGUMENTS
Use the memory_smart_search MCP tool (provided by the agentmemory server that this plugin wires up automatically via .mcp.json) with the user's query as the query argument and limit: 10. The tool runs hybrid BM25 + vector + graph-expanded search over captured observations and returns ranked results.
Present the returned results to the user in a readable format:
- Group by session
- For each observation show its type, title, and narrative
- Highlight the most important observations (importance >= 7)
- If no results come back, suggest 2-3 alternative search terms the user could try
Do NOT make up or hallucinate observations. Only present what the MCP tool actually returned. If memory_smart_search isn't available, the stdio MCP shim didn't start — tell the user to:
- Run
/plugin listin Claude Code and confirmagentmemoryshows as enabled. - Restart Claude Code (the plugin's
.mcp.jsonis only read on startup). - Check
/mcpto see whether theagentmemoryMCP server is connected.
More from rohitg00/agentmemory
remember
Explicitly save an insight, decision, or learning to agentmemory's long-term storage. Use when the user says "remember this", "save this", or wants to preserve knowledge for future sessions.
35session-history
Show what happened in recent past sessions on this project. Use when user asks "what did we do last time", "session history", "past sessions", or wants an overview of previous work.
33forget
Delete specific observations or sessions from agentmemory. Use when user says "forget this", "delete memory", or wants to remove specific data for privacy.
32