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'.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentmemory:rememberThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The user wants to save this to long-term memory: $ARGUMENTS
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:
npx claudepluginhub rohitg00/agentmemory --plugin agentmemorySave information to Memex long-term memory. Captures the given text (or infers the most important context from the conversation) as a persistent note.
Saves facts, decisions, and context to Memsy memory for future sessions. Strips framing verbs and persists the substance verbatim via memsy_ingest.
Saves facts, decisions, project details, or preferences to agd-memory via /remember or phrases like 'remember this', 'save to memory'. Direct save or interactive draft+confirm modes.