From claude-recap
Saves user preferences, constraints, or facts (e.g., 'always use bun', 'never auto-commit', 'user name is Alex') to REMEMBER.md. Persists across sessions with global or project scope.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-recap:rememberThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Saves a user preference, constraint, or fact to REMEMBER.md so it persists across sessions. The user chooses scope (global or project).
Saves a user preference, constraint, or fact to REMEMBER.md so it persists across sessions. The user chooses scope (global or project).
Distill what the user wants to remember into one concise line (imperative form, no filler).
Ask the user which scope using AskUserQuestion:
Which scope should this apply to?
- Global: applies to all projects
- Project: applies only to this project
Get the plugin scripts path from the SessionStart injection in your context:
Plugin scripts path: /path/to/scripts
Run the remember script:
bash "<plugin_scripts_path>/remember.sh" "<scope>" "<content>"
Where:
plugin_scripts_path: the path from SessionStart injectionscope: global or projectcontent: the distilled one-liner (quote it properly for shell)| User says | Distilled entry |
|---|---|
| "Remember I always use bun" | Use bun instead of npm for package management |
| "Never auto-commit without asking" | Never auto-commit; always ask before committing |
| "My name is Alex" | User's name is Alex |
| "For this project, always run tests with --verbose" | Run tests with --verbose flag (project scope) |
npx claudepluginhub hatawong/claude-recap --plugin claude-recapSaves decisions, preferences, patterns, lessons, and project context to Claude Code's persistent memory directory as structured markdown files, with duplicate checks and index updates for cross-session recall.
Saves key project knowledge explicitly to MEMORY.md via /si:remember for reliable recall. Checks duplicates, warns on size, suggests CLAUDE.md promotion.
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.