# skill.cc/memory
> **Persistent context and associative recall.**
---
## Quick Start
```
Agent: Mount skill.cc/memory
Human: "Remember this for later" / "What do you know about X?"
```
---
## What You Get
- **Persistence** — Context survives across sessions
- **Associative search** — Find by meaning, not just keywords
- **Structured storage** — Annotations, themes, voice profiles
- **Retrieval** — Query past conversations and stored knowledge
---
## Usage
### Store
```
memory.store(key, value, tags?)
memory.annotate(content, themes?)
```
### Recall
```
memory.search(query) → relevant memories
memory.get(key) → specific item
memory.themes() → what topics exist
```
### For Humans
```
"Remember that I prefer detailed explanations"
"What have we discussed about TPV technology?"
"Save this conversation to memory"
```
---
## Integration: Mind Palace
This skill connects to persistent memory:
- 2000+ annotations
- 600+ themes
- Voice profiles
- Soul map
**Canonical endpoint:** `skill.cc/memory/api/*`
**Current bridge:** Cloudflare tunnel to Mind Palace server
(temporary until skill.cc infrastructure deployed)
---
## Platform Routing
| Platform | Implementation |
|----------|----------------|
| Claude.ai | Uses `memory_user_edits` tool + conversation history |
| Claude Code | Reads/writes to ~/.mindpalace/ |
| API | POST to mindpalace.cx/api/v1/* |
| MCP | Exposes memory_store, memory_search tools |
---
## Related Skills
- `skill.cc/persist` — Save current outputs to memory
- `skill.cc/council` — Uses memory for voice profiles
- `skill.cc/think` — Extended reasoning with memory context
---
*Parent: skill.cc*