Agent skill
save-memory
Manually save current session memory to files
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/productivity/save-memory-zipperbagcoffee-memory-keeper-plugin
SKILL.md
Save Memory
Force immediate save of session memory.
Usage
/memory-keeper:save-memory
Actions
- Save to memory.md:
echo -e "\n## $(date +%Y-%m-%d_%H%M)\n[Summary of current session progress]" >> ".claude/memory/memory.md"
- Create session file:
cat > ".claude/memory/sessions/$(date +%Y-%m-%d_%H%M).md" << 'ENDSESSION'
# Session TIMESTAMP
## Summary
[What has been accomplished so far]
## Decisions
- [type] Decision: Reason
- files: affected files
- concepts: relevant concepts
## Patterns
- [type] Pattern observed
- concepts: tags
## Issues
- [type] Issue: open|resolved
- files: affected files
ENDSESSION
- Extract facts:
node "scripts/counter.js" extract-facts TIMESTAMP
Notes
- Uses same format as auto-save
- Does NOT reset counter (auto-save will still trigger normally)
- Use when you want to checkpoint progress mid-session
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?