From agentmemory
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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentmemory:remember [what to remember][what to remember]The 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
Use the memory_save MCP tool (provided by the agentmemory server that this plugin wires up automatically via .mcp.json) to persist it.
Steps:
concepts (lowercased keyword phrases) that capture what the memory is about. Prefer specific terms over generic ones ("jwt-refresh-rotation" beats "auth").files — absolute or repo-relative paths the memory references.memory_save with the fields:
content — the full text to remember (preserve the user's phrasing as much as possible)concepts — the extracted concept listfiles — the extracted file list (empty array if none apply)If memory_save 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.npx claudepluginhub doriangallo/agentmemory-local --plugin agentmemoryGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.