# aimem-cli
`aimem-cli` provides the `aimem` command-line interface for AiMem.
## What the current CLI supports
- project mining
- conversation import
- hybrid keyword + vector search
- wake-up context generation
- store status inspection
- opt-in remote embedding
## Install
```bash
cargo install aimem-cli
```
## Usage
```bash
aimem status
aimem wake-up
aimem search "hybrid search"
aimem mine /path/to/project --no-embed
```
## Remote embedding
```bash
export GEMINI_API_KEY=...
aimem search "hybrid search" --gemini-key "$GEMINI_API_KEY"
```
## Notes
- `aimem status` shows the current embedding profile.
- `aimem search` and `aimem mine` can use `--gemini-key` or `GEMINI_API_KEY`.
- `aimem search` uses hybrid keyword + vector ranking when an embedder is available.
- default DB path is `~/.aimem/aimem.db`.