| layout | page |
|---|---|
| title | Getting Started |
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 - Run
codex-memory health
If the command prints ok, the local memory daemon is running.
Run the daemon:
cargo run --bin codex-memorydIn another shell:
cargo run --bin codex-memory -- add \
--content "Repo requires concise answers" \
--kind constraint \
--tag repo
cargo run --bin codex-memory -- prompt repo --format toonInstall with systemd user services:
./scripts/install.shThis performs four steps:
- builds release binaries
- installs them into
~/.local/bin - writes
~/.config/codex-memory/config.tomlif it does not already exist - starts a background user service using
launchctlon macOS orsystemctl --useron Linux
codex-memory health
codex-memory stats
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
launchctl unload ~/Library/LaunchAgents/com.alphaone.codex-memory.plist && launchctl load ~/Library/LaunchAgents/com.alphaone.codex-memory.plist./scripts/uninstall.shThat removes the user service and binaries but leaves your config and SQLite database intact.