/remember
Store something in Claude's persistent memory.
Usage: /remember <text>
Behavior
- •Parse the text after "/remember"
- •Detect project context (auto-derive project ID from current git remote using SHA-256 of normalized URL)
- •Call
mcp__claude-memory__memory_storewith:- •text: the user's input
- •source: "user"
- •project: detected project ID (or null for global)
- •tags: auto-detect from content (e.g., "convention", "architecture", "preference", "debugging", "decision")
- •Confirm what was stored and how many chunks it produced
Tag Detection Guidelines
- •Code style/linting preferences → "convention"
- •Architecture decisions → "architecture", "decision"
- •Debugging findings → "debugging"
- •Tool/library preferences → "preference"
- •Team/people info → "team"
- •Deployment/infra → "infrastructure"
Examples
- •
/remember always use pnpm in this project→ tags: ["convention", "preference"] - •
/remember the auth service uses JWT with RS256→ tags: ["architecture", "decision"] - •
/remember fix for OOM: increase Node heap to 4GB→ tags: ["debugging"]