← ClaudeAtlas

agent-memorylisted

Use this skill when the user asks to save, remember, recall, or organize memories. Triggers on: 'remember this', 'save this', 'note this', 'what did we discuss about...', 'check your notes', 'clean up memories'. Also use proactively when discovering valuable findings worth preserving.
aiskillstore/marketplace · ★ 329 · AI & Automation · score 79
Install: claude install-skill aiskillstore/marketplace
# Agent Memory A persistent memory space for storing knowledge that survives across conversations. **Location:** `.claude/skills/agent-memory/memories/` ## Proactive Usage Save memories when you discover something worth preserving: - Research findings that took effort to uncover - Non-obvious patterns or gotchas in the codebase - Solutions to tricky problems - Architectural decisions and their rationale Check memories when starting related work: - Before investigating a problem area - When working on a feature you've touched before Organize memories when needed: - Consolidate scattered memories on the same topic - Remove outdated or superseded information ## Folder Structure When possible, organize memories into category folders. No predefined structure - create categories that make sense for the content. Guidelines: - Use kebab-case for folder and file names - Consolidate or reorganize as the knowledge base evolves Example: ```text memories/ ├── file-processing/ │ └── large-file-memory-issue.md ├── dependencies/ │ └── iconv-esm-problem.md └── project-context/ └── december-2025-work.md ``` This is just an example. Structure freely based on actual content. ## Frontmatter All memories must include frontmatter with a `summary` field. The summary should be concise enough to determine whether to read the full content. **Required:** ```yaml --- summary: "1-2 line description of what this memory contains" created: 2025-01-15 # YYYY-MM-DD format --- ``` **Opti