Manually save current session context to memory
Saves session context to memory with decisions, patterns, and issues.
/plugin marketplace add ZipperBagCoffee/memory-keeper-plugin/plugin install memory-keeper@memory-keeper-marketplaceSave current session context to memory.
Run to trigger auto-save instructions:
node scripts/counter.js check
TIMESTAMP=$(date +%Y-%m-%d_%H%M)
echo -e "\n## $TIMESTAMP\n[Your summary here]" >> .claude/memory/memory.md
node scripts/counter.js add-decision "what was decided" "why" "architecture|technology|approach"
node scripts/counter.js add-pattern "pattern description" "convention|best-practice|anti-pattern"
node scripts/counter.js add-issue "issue description" "open|resolved" "bugfix|performance|security|feature"
Add file references and concept tags at the end:
node scripts/counter.js add-decision "Use React hooks" "Better state" "technology" "src/hooks/useAuth.ts" "auth,hooks"