plugin/skills/recall/SKILL.md
Search agentmemory for past observations, sessions, and learnings about a topic. Use when the user says "recall", "remember", "what did we do", or needs context from past sessions.
npx skillsauth add rohitg00/agentmemory recallInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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:
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:
/plugin list in Claude Code and confirm agentmemory shows as enabled..mcp.json is only read on startup)./mcp to see whether the agentmemory MCP server is connected.data-ai
Summarize the last N agent sessions for the current project, grouped by date. Use when the user asks "recap", "what have we been doing", "this week", "today", or wants a rollup of recent work.
data-ai
Resume the most recent agent session for the current working directory. Use when the user says "where were we", "resume", "handoff", "pick up where I left off", or starts a session with no fresh context.
data-ai
List recent git commits that are linked to agent sessions, optionally filtered by branch or repo. Use when the user asks "show agent commits", "what has the agent shipped", or wants a list of commits with their session context.
development
Trace a file, function, or line back to the agent session that produced its current commit. Use when the user asks "why is this code here", "what was the agent doing when this changed", or wants context on a specific location in the codebase.