adopt
Use when: user asks to increase claude-mem-lite's tool-invocation rate in the current project, or to (re)install the steering block. Writes a sentinel-wrapped…
Use when: user asks to remember something, after solving a non-obvious problem, or to capture key session findings
> /plugin marketplace add sdsrss/claude-mem-lite > /plugin install claude-mem-lite@sdsrss
How it fires
How this command gets triggered: by you, by Claude, or both.
/memoryContext preview
What this command does when you run it.
Use when: user asks to remember something, after solving a non-obvious problem, or to capture key session findings
name: memory description: "Use when: user asks to remember something, after solving a non-obvious problem, or to capture key session findings"
Save important content to your long-term memory database.
When the user invokes `/mem:memory`, determine the intent:
If the user provides content after the command:
1. Analyze the content to determine appropriate type (decision, bugfix, feature, refactor, discovery, change) 2. Generate a concise title from the content 3. Call `mem_save` with:
If the user provides instructions like "save the database schema we discussed" or "remember the fix for the auth bug":
1. Review recent conversation context 2. Extract the relevant information per the user's instruction 3. Call `mem_save` with extracted content, appropriate title and type, importance=2
If no content is provided:
1. Review the current session's recent key findings 2. Identify: decisions made, bugs fixed, patterns discovered, important code changes 3. For each significant finding (max 5), call `mem_save` with:
4. Skip trivial or already-saved items 5. Report what was saved in a concise summary
Always set importance=2 for explicit saves (user chose to save), importance=1 for auto-saves of routine items, importance=2 for auto-saves of notable discoveries.
claude-mem-lite is a persistent memory (also called long-term memory or cross-session context) system for Claude Code — Anthropic's CLI coding agent.
Use when: user asks to increase claude-mem-lite's tool-invocation rate in the current project, or to (re)install the steering block. Writes a sentinel-wrapped…
Use when: logging a known bug + repro steps you can't fix right now. Writes a searchable observation (findable via mem_search + surfaced by recall hooks; still…
Use when: capturing a non-obvious lesson/gotcha/workaround after a tricky fix or surprising behavior. Writes a searchable observation (findable via mem_search…
Use when: user wants to remove the claude-mem-lite steering block from the current project (or from every project Claude Code knows about with --all). Removes…