-
Notifications
You must be signed in to change notification settings - Fork 1
Getting Started
LeonXu edited this page Apr 1, 2026
·
1 revision
- macOS (Apple Silicon / M1+)
- One or more supported AI coding tools installed
- Download the latest DMG from Releases
- Open the DMG
- Drag Memora to Applications
- Launch Memora
On first launch, Memora detects installed AI tools and asks permission to install hooks:
-
Claude Code: Adds shell command hooks to
~/.claude/settings.json -
Codex CLI: Adds hooks to
~/.codex/hooks.json - OpenCode: Installs a TypeScript plugin
These hooks run in the background during your coding sessions, capturing conversation transcripts to ~/.memora/raw/.
You can skip hook installation and add it later, but Memora won't capture new conversations until hooks are installed.
A 6-step guided tour introduces the main interface areas. You can replay it anytime by clicking the ? button in the top-right corner.
All Memora data is stored locally at ~/.memora/:
~/.memora/
├── events.jsonl # Hook event log
├── raw/ # Original conversation transcripts
│ ├── claude-code/
│ ├── codex/
│ └── ...
├── memora.db # SQLite index (rebuilt from raw/ if deleted)
└── .git/ # Auto-versioned backup
Memora syncs every 15 seconds:
- Reads new hook events
- Imports conversation transcripts
- Syncs git commits from all projects
- Auto-commits data changes to
~/.memora/.git/