| name | Memory |
| slug | memory |
| version | 1.0.2 |
| homepage | https://clawic.com/skills/memory |
| description | Infinite organized memory that complements your agent's built-in memory with unlimited categorized storage. |
| changelog | Redesigned as complementary system, user-defined categories, optional sync from built-in memory. |
| metadata | {"clawdbot":{"emoji":"๐ง ","requires":{"bins":[]},"os":["linux","darwin","win32"]}} |
Memory ๐ง
Superpowered memory that never forgets.
Your agent has basic built-in memory. This skill adds infinite, perfectly organized memory for everything else โ parallel and complementary, never conflicting.
How It Works
Built-in Agent Memory This Skill (~/memory/)
โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ MEMORY.md โ โ Infinite categorized storage โ
โ memory/ (daily logs)โ + โ Any structure you want โ
โ Basic recall โ โ Perfect organization โ
โโโโโโโโโโโโโโโโโโโโโโโ โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ โ
Agent basics Everything else
(works automatically) (scales infinitely)
Not a replacement. Your agent's built-in memory keeps working. This adds a parallel system for unlimited, organized storage.
Setup
On first use, read setup.md to configure the memory system with the user. Key decisions:
- What categories do they need?
- Should we sync anything from built-in memory?
- How do they want to find things?
When to Use
User needs organized long-term storage beyond basic agent memory: detailed project histories, extensive contact networks, decision logs, domain knowledge, collections, or any structured data that grows over time.
Architecture
Memory lives in ~/memory/ โ a dedicated folder separate from built-in agent memory.
~/memory/
โโโ config.md # System configuration
โโโ INDEX.md # What's stored, where to find it
โ
โโโ [user-defined]/ # Categories the user needs
โ โโโ INDEX.md # Category overview
โ โโโ {items}.md # Individual entries
โ
โโโ sync/ # Optional: synced from built-in memory
โโโ ...
The user defines the categories. Common examples:
projects/ โ detailed project context
people/ โ contact network with full context
decisions/ โ reasoning behind choices
knowledge/ โ domain expertise, reference material
collections/ โ books, recipes, anything they collect
See memory-template.md for all templates.
Quick Reference
| Topic | File |
|---|
| First-time setup | setup.md |
| All templates | memory-template.md |
| Organization patterns | patterns.md |
| Problems & fixes | troubleshooting.md |
Core Rules
1. Separate from Built-In Memory
This system lives in ~/memory/. Never modify:
- Agent's MEMORY.md (workspace root)
- Agent's
memory/ folder (if it exists in workspace)
Parallel, not replacement. Both systems work together.
2. User Defines Structure
During setup, ask what they want to store. Create categories based on their needs:
| They say... | Create |
|---|
| "I have many projects" | ~/memory/projects/ |
| "I meet lots of people" | ~/memory/people/ |
| "I want to track decisions" | ~/memory/decisions/ |
| "I'm learning [topic]" | ~/memory/knowledge/[topic]/ |
| "I collect [things]" | ~/memory/collections/[things]/ |
No preset structure. Build what they need.
3. Every Category Has an Index
Each folder gets an INDEX.md that lists contents:
# Projects Index
| Name | Status | Updated | File |
|------|--------|---------|------|
| Alpha | Active | 2026-02 | alpha.md |
| Beta | Paused | 2026-01 | beta.md |
Total: 2 active, 5 archived
Indices stay small (<100 entries). When full, split into subcategories.
4. Write Immediately
When user shares important information:
- Write to appropriate file in ~/memory/
- Update the category INDEX.md
- Then respond
Don't wait. Don't batch. Write immediately.
5. Search Then Navigate
To find information:
- Ask first: "Is this in ~/memory/ or built-in memory?"
- Search: grep or semantic search in ~/memory/
- Navigate: INDEX.md โ category โ specific file
grep -r "keyword" ~/memory/
cat ~/memory/INDEX.md
cat ~/memory/projects/INDEX.md
cat ~/memory/projects/alpha.md
6. Sync from Built-In (Optional)
If user wants certain info copied from built-in memory:
~/memory/sync/
โโโ preferences.md # Synced from built-in
โโโ decisions.md # Synced from built-in
Sync is one-way: Built-in โ this system. Never modify built-in.
7. Scale by Splitting
When a category grows large:
- INDEX.md > 100 entries โ split into subcategories
- Create sub-INDEX.md for each subcategory
- Root INDEX.md points to subcategories
~/memory/projects/
โโโ INDEX.md # "See active/, archived/"
โโโ active/
โ โโโ INDEX.md # 30 active projects
โ โโโ ...
โโโ archived/
โโโ INDEX.md # 200 archived projects
โโโ ...
What to Store Here (vs Built-In)
| Store HERE (~/memory/) | Keep in BUILT-IN |
|---|
| Detailed project histories | Current project status |
| Full contact profiles | Key contacts quick-ref |
| All decision reasoning | Recent decisions |
| Domain knowledge bases | Quick facts |
| Collections, inventories | โ |
| Anything that grows large | Summaries |
Rule: Built-in for quick context. Here for depth and scale.
Finding Things
For Small Memory (<50 files)
grep -r "keyword" ~/memory/
For Large Memory (50+ files)
Navigate via indices:
1. ~/memory/INDEX.md โ find category
2. ~/memory/{category}/INDEX.md โ find item
3. ~/memory/{category}/{item}.md โ read details
For Huge Memory (500+ files)
Use semantic search if available, or hierarchical indices:
~/memory/projects/INDEX.md โ "web projects in web/"
~/memory/projects/web/INDEX.md โ "alpha project"
~/memory/projects/web/alpha.md โ details
Maintenance
Weekly (5 min)
- Update INDEX.md files if entries added
- Archive completed/inactive items
Monthly (15 min)
- Review category sizes
- Split large categories
- Remove outdated entries
When Memory is Slow
- Check INDEX.md sizes (keep <100 lines)
- Split big categories into subcategories
- Archive old content
Common Traps
-
Modifying built-in memory โ Never touch agent's MEMORY.md or workspace memory/. This system is parallel.
-
No indices โ Without INDEX.md, finding things requires searching all files. Always maintain indices.
-
One giant category โ 500 items in one folder is slow. Split into subcategories.
-
Syncing everything โ Don't copy all built-in memory. Only sync what needs organization here.
-
Waiting to write โ Write immediately when user shares info. Don't batch.
Security & Privacy
Data location:
- All data in
~/memory/ on user's machine
- No external services required
- No network requests
This skill does NOT:
- Access built-in agent memory (only reads if syncing)
- Send data anywhere
- Store credentials (never store secrets in memory)
Related Skills
Install with clawhub install <slug> if user confirms:
decide - Decision tracking patterns
escalate - When to involve humans
learn - Adaptive learning
Feedback
- If useful:
clawhub star memory
- Stay updated:
clawhub sync