MEMORY.md Template

Durable notes the agent persists across conversations. There's a static file and an active memory engine โ€” both end up here.

Static file format

# Memory

## 2026-05-21 (compacted from earlier session)

- User prefers tokens with > $50k 24h volume
- BTC ATH thesis: 200k by Q4 (sentiment, not financial advice)
- Active watchlist: $BAGS, $PUMP, $WIF
- User's Solana wallet (read-only): ABC123...XYZ

## 2026-05-22

- New rule: skip tokens < 24h old until liquidity proven
- BAGS thesis confirmed by recent dev activity

Active memory entries

Beyond the static file, the Memory Engine stores structured entries with tags, sessionKey, and TTL in <agent>/memory/<id>.json files.

Privacy

Memory lives in the agent's own directory. Never sent off-machine. File mode 0600.

Don't store secrets here (API keys, private keys, passwords). They belong in environment variables or the OAuth token store.

What's next?