
Remember
Persist decisions and learnings into agentmemory long-term storage when you say remember this so future agent sessions can retrieve them by concept.
Install
npx skills add https://github.com/rohitg00/agentmemory --skill rememberWhat is this skill?
- User-invocable when you say remember this or save this
- Calls agentmemory `memory_save` MCP with content, concepts, and file paths
- Tags 2–5 lowercased searchable concepts (specific phrases over generic labels)
- Fallback steps if MCP shim fails: plugin list, restart, `/mcp` check
Adoption & trust: 1.3k installs on skills.sh; 21.8k GitHub stars; 2/3 security scanners passed (skills.sh audits).
Recommended Skills
Microsoft Foundrymicrosoft/azure-skills
Azure Aimicrosoft/azure-skills
Azure Hosted Copilot Sdkmicrosoft/azure-skills
Lark Eventlarksuite/cli
Running Claude Code Via Litellm Copilotxixu-me/skills
Setup Matt Pocock Skillsmattpocock/skills
Journey fit
Primary fit
Operate/iterate is the canonical shelf because durable memory pays off when you return to a codebase across shipping cycles. Iterate subphase covers capturing what you learned so the next session does not re-discover the same JWT, deploy, or product choices.
Common Questions / FAQ
Is Remember safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Remember
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: 1. Analyze what the user wants to remember — pull out the core insight, decision, or fact. 2. Extract 2-5 searchable `concepts` (lowercased keyword phrases) that capture what the memory is about. Prefer specific terms over generic ones (`"jwt-refresh-rotation"` beats `"auth"`). 3. Extract any relevant `files` — absolute or repo-relative paths the memory references. 4. Call `memory_save` with the fields: - `content` — the full text to remember (preserve the user's phrasing as much as possible) - `concepts` — the extracted concept list - `files` — the extracted file list (empty array if none apply) 5. Confirm to the user that the memory was saved and show the concepts you tagged so they know what terms will retrieve it later. If `memory_save` isn't available, the stdio MCP shim didn't start — tell the user to: 1. Run `/plugin list` in Claude Code and confirm `agentmemory` shows as enabled. 2. Restart Claude Code (the plugin's `.mcp.json` is only read on startup). 3. Check `/mcp` to see whether the `agentmemory` MCP server is connected.