From agentmemory
Searches agentmemory for past observations, sessions, and learnings matching a query. Groups results by session, shows type/title/narrative, highlights importance >=7. Triggers on 'recall', 'remember', or prior context needs.
npx claudepluginhub rohitg00/agentmemory --plugin agentmemoryThis skill uses the workspace's default tool permissions.
Search agentmemory for observations matching: $ARGUMENTS
Searches claude-mem's persistent cross-session memory for past work via 3-step workflow: search index, timeline context, fetch details. Use for recalling previous solutions.
Retrieves relevant memories from past sessions using memsearch for historical context, decisions, debugging notes, and project knowledge. Activates on relevance or '[memsearch] Memory available' hints.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
Search agentmemory for observations matching: $ARGUMENTS
!QUERY=$(echo "$ARGUMENTS" | sed 's/\\/\\\\/g; s/"/\\"/g') && curl -s -H "Content-Type: application/json" -H "Authorization: Bearer ${AGENTMEMORY_SECRET:-}" -X POST http://${AGENTMEMORY_URL:-localhost:3111}/agentmemory/search -d "{\"query\": \"${QUERY}\", \"limit\": 10}" 2>/dev/null || echo '{"results":[]}'
Present the search results to the user in a readable format:
Do NOT make up or hallucinate results. Only present what was returned from the search.