| layout | page |
|---|---|
| title | Quickstart |
MIT licensed open source project by AlphaOne LLC.
- Install Rust from
https://rustup.rs/ - Download or clone this repository
- Open Terminal in the project folder
- Run:
./scripts/install.sh- Then run:
codex-memory healthIf you see ok, the daemon is working.
Run:
codex-memory add \
--content "I prefer concise technical answers" \
--kind preference \
--project-id my-project \
--tag userThen verify:
codex-memory search concise --project-id my-projectmacOS:
launchctl list | grep codex-memory
tail -n 50 ~/Library/Logs/codex-memory/codex-memory.stderr.logUbuntu or Fedora:
systemctl --user status codex-memory.service
journalctl --user -u codex-memory.service -n 50Linux:
systemctl --user start codex-memory.service
systemctl --user stop codex-memory.service
systemctl --user restart codex-memory.servicemacOS:
launchctl load ~/Library/LaunchAgents/com.alphaone.codex-memory.plist
launchctl unload ~/Library/LaunchAgents/com.alphaone.codex-memory.plist./scripts/uninstall.sh