From agentmemory
Saves insights, decisions, or learnings to agentmemory long-term storage via curl POST API. Extracts concepts and files; activates on 'remember this' or 'save this'.
npx claudepluginhub rohitg00/agentmemory --plugin agentmemoryThis skill uses the workspace's default tool permissions.
The user wants to save this to long-term memory: $ARGUMENTS
Stores information persistently in ourmem via curl API for cross-session memory. Activates on user requests to remember, save, store, or don't forget.
Persists learnings into a 5-layer memory hierarchy (CLAUDE.md files, memory/MEMORY.md) and consolidates by pruning outdated entries and promoting recurring patterns. Triggers on 'extract learnings', 'remember', 'dream'.
Saves concise user-specified information to Mem9 shared memory via Bash API for persistence across Claude Code sessions. Triggers on 'remember', 'note down', or 'save' requests.
Share bugs, ideas, or general feedback.
The user wants to save this to long-term memory: $ARGUMENTS
To save this, make a POST request using the Bash tool:
curl -s -H "Content-Type: application/json" \
-H "Authorization: Bearer ${AGENTMEMORY_SECRET:-}" \
-X POST "http://${AGENTMEMORY_URL:-localhost:3111}/agentmemory/remember" \
-d '{"content": "<ESCAPED_CONTENT>", "concepts": [<CONCEPTS>], "files": [<FILES>]}'
Steps: