From memory
Automatic persistent memory for Claude Code with progressive disclosure and markdown-first storage
How this skill is triggered — by the user, by Claude, or both
Slash command
/memory:memory-keeperThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Automatic persistent memory system for Claude Code with progressive disclosure.
Automatic persistent memory system for Claude Code with progressive disclosure.
This skill helps Claude maintain persistent memory across sessions by:
~/.claude/projects/-<project>/memory/
├── MEMORY.md # Auto-loaded (quick reference, under 200 lines)
├── queue.md # Pending items (processed on session end)
├── sessions/ # Daily session summaries
│ └── 2026-02-25.md
├── lessons/ # Lessons organized by topic
│ ├── typescript.md
│ ├── python.md
│ ├── rust.md
│ └── git.md
└── preferences/ # User preferences
└── index.md
When you use Write, Edit, or Bash tools, the capture script:
queue.mdWhen the session ends, the summarize script:
queue.mdsessions/YYYY-MM-DD.mdMEMORY.md with today's session reference| Layer | When Loaded | Content |
|---|---|---|
| 1 | Every session | MEMORY.md (quick reference) |
| 2 | On /recall command | Topic files from lessons/ |
| 3 | When needed | Full session details |
| Command | Purpose |
|---|---|
/recall [query] | Search and load relevant memories |
/remember <lesson> | Manually add a lesson |
/forget <topic> | Remove outdated memory |
/remember:/forget:To increase the chance of finding the right memory:
| Feature | claude-mem | This Plugin |
|---|---|---|
| Storage | SQLite | Markdown files |
| Retrieval | MCP tools | Commands + skill |
| Worker | Background service | Hook scripts |
| Human-readable | No | Yes |
| Complexity | High | Low |
npx claudepluginhub astralform-ai/astralform-plugins --plugin memoryBuilds a throwaway prototype to answer a design question about UI appearance or state/logic behavior. Guides you through two branches: interactive terminal app for logic validation, or multiple UI variations for visual exploration.