2026-04-09 19:11:23 -03:00
|
|
|
|
# CLI Commands
|
|
|
|
|
|
|
|
|
|
|
|
All commands accept `--palace <path>` to override the default palace location.
|
|
|
|
|
|
|
|
|
|
|
|
## `mempalace init`
|
|
|
|
|
|
|
2026-04-15 09:26:20 +02:00
|
|
|
|
Scan a project directory for people, projects, and rooms, and set up the palace.
|
2026-04-09 19:11:23 -03:00
|
|
|
|
|
|
|
|
|
|
```bash
|
2026-04-15 09:26:20 +02:00
|
|
|
|
mempalace init <dir> # <dir> is required
|
|
|
|
|
|
mempalace init <dir> --yes # non-interactive mode
|
|
|
|
|
|
mempalace init ~/projects/myapp # example
|
|
|
|
|
|
mempalace init . # initialize from the current directory
|
2026-04-09 19:11:23 -03:00
|
|
|
|
```
|
|
|
|
|
|
|
2026-04-15 09:26:20 +02:00
|
|
|
|
| Option | Description |
|
|
|
|
|
|
|---------|------------------------------------------------------------------------------|
|
|
|
|
|
|
| `<dir>` | **Required.** Project directory to scan. Pass `.` for the current directory. |
|
|
|
|
|
|
| `--yes` | Auto-accept all detected entities |
|
2026-04-09 19:11:23 -03:00
|
|
|
|
|
|
|
|
|
|
What it does:
|
2026-04-15 09:26:20 +02:00
|
|
|
|
|
|
|
|
|
|
1. Scans `<dir>` for people and projects in file content
|
|
|
|
|
|
2. Detects rooms from `<dir>`'s folder structure
|
|
|
|
|
|
3. Saves detected entities to `<dir>/entities.json`
|
|
|
|
|
|
4. Ensures the global `~/.mempalace/` config directory exists
|
|
|
|
|
|
|
|
|
|
|
|
Running `mempalace init` with no argument will exit with
|
|
|
|
|
|
`error: the following arguments are required: dir`.
|
2026-04-09 19:11:23 -03:00
|
|
|
|
|
|
|
|
|
|
## `mempalace mine`
|
|
|
|
|
|
|
|
|
|
|
|
Mine files into the palace.
|
|
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
|
mempalace mine <dir>
|
|
|
|
|
|
mempalace mine <dir> --mode convos
|
|
|
|
|
|
mempalace mine <dir> --mode convos --extract general
|
|
|
|
|
|
mempalace mine <dir> --wing myapp
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
| Option | Default | Description |
|
|
|
|
|
|
|--------|---------|-------------|
|
|
|
|
|
|
| `<dir>` | — | Directory to mine |
|
|
|
|
|
|
| `--mode` | `projects` | `projects` for code/docs, `convos` for chat exports |
|
|
|
|
|
|
| `--wing` | directory name | Wing name override |
|
|
|
|
|
|
| `--agent` | `mempalace` | Agent name tag |
|
|
|
|
|
|
| `--limit` | `0` (all) | Max files to process |
|
|
|
|
|
|
| `--dry-run` | — | Preview without filing |
|
|
|
|
|
|
| `--extract` | `exchange` | `exchange` or `general` (for convos mode) |
|
|
|
|
|
|
| `--no-gitignore` | — | Don't respect .gitignore |
|
|
|
|
|
|
| `--include-ignored` | — | Always scan these paths even if ignored |
|
|
|
|
|
|
|
|
|
|
|
|
## `mempalace search`
|
|
|
|
|
|
|
|
|
|
|
|
Find anything by semantic search.
|
|
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
|
mempalace search "query"
|
|
|
|
|
|
mempalace search "query" --wing myapp
|
|
|
|
|
|
mempalace search "query" --wing myapp --room auth
|
|
|
|
|
|
mempalace search "query" --results 10
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
| Option | Default | Description |
|
|
|
|
|
|
|--------|---------|-------------|
|
|
|
|
|
|
| `"query"` | — | What to search for |
|
|
|
|
|
|
| `--wing` | all | Filter by wing |
|
|
|
|
|
|
| `--room` | all | Filter by room |
|
|
|
|
|
|
| `--results` | `5` | Number of results |
|
|
|
|
|
|
|
|
|
|
|
|
## `mempalace split`
|
|
|
|
|
|
|
|
|
|
|
|
Split concatenated transcript mega-files into per-session files.
|
|
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
|
mempalace split <dir>
|
|
|
|
|
|
mempalace split <dir> --dry-run
|
|
|
|
|
|
mempalace split <dir> --min-sessions 3
|
|
|
|
|
|
mempalace split <dir> --output-dir ~/split-output/
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
| Option | Default | Description |
|
|
|
|
|
|
|--------|---------|-------------|
|
|
|
|
|
|
| `<dir>` | — | Directory with transcript files |
|
|
|
|
|
|
| `--output-dir` | same dir | Write split files here |
|
|
|
|
|
|
| `--dry-run` | — | Preview without writing |
|
|
|
|
|
|
| `--min-sessions` | `2` | Only split files with N+ sessions |
|
|
|
|
|
|
|
|
|
|
|
|
## `mempalace wake-up`
|
|
|
|
|
|
|
2026-04-16 23:31:35 -03:00
|
|
|
|
Show L0 + L1 wake-up context (~600–900 tokens).
|
2026-04-09 19:11:23 -03:00
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
|
mempalace wake-up
|
|
|
|
|
|
mempalace wake-up --wing driftwood
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
| Option | Description |
|
|
|
|
|
|
|--------|-------------|
|
|
|
|
|
|
| `--wing` | Project-specific wake-up |
|
|
|
|
|
|
|
|
|
|
|
|
## `mempalace compress`
|
|
|
|
|
|
|
|
|
|
|
|
Compress drawers using AAAK Dialect.
|
|
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
|
mempalace compress --wing myapp
|
|
|
|
|
|
mempalace compress --wing myapp --dry-run
|
|
|
|
|
|
mempalace compress --config entities.json
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
| Option | Description |
|
|
|
|
|
|
|--------|-------------|
|
|
|
|
|
|
| `--wing` | Wing to compress (default: all) |
|
|
|
|
|
|
| `--dry-run` | Preview without storing |
|
|
|
|
|
|
| `--config` | Entity config JSON file |
|
|
|
|
|
|
|
|
|
|
|
|
## `mempalace status`
|
|
|
|
|
|
|
|
|
|
|
|
Show what's been filed — drawer count, wing/room breakdown.
|
|
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
|
mempalace status
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
## `mempalace repair`
|
|
|
|
|
|
|
|
|
|
|
|
Rebuild palace vector index from stored data. Fixes segfaults after database corruption.
|
|
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
|
mempalace repair
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Creates a backup at `<palace_path>.backup` before rebuilding.
|
|
|
|
|
|
|
2026-04-09 23:45:33 -07:00
|
|
|
|
## `mempalace mcp`
|
|
|
|
|
|
|
|
|
|
|
|
Helper command that outputs setup syntax (like `claude mcp add...`) to connect MemPalace to your AI client, automatically handling paths.
|
|
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
|
mempalace mcp
|
|
|
|
|
|
mempalace mcp --palace ~/.custom-palace
|
|
|
|
|
|
```
|
|
|
|
|
|
|
2026-04-09 19:11:23 -03:00
|
|
|
|
## `mempalace hook`
|
|
|
|
|
|
|
|
|
|
|
|
Run hook logic for Claude Code / Codex integration.
|
|
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
|
mempalace hook run --hook stop --harness claude-code
|
|
|
|
|
|
mempalace hook run --hook precompact --harness claude-code
|
|
|
|
|
|
mempalace hook run --hook session-start --harness codex
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
| Option | Values | Description |
|
|
|
|
|
|
|--------|--------|-------------|
|
|
|
|
|
|
| `--hook` | `session-start`, `stop`, `precompact` | Hook name |
|
|
|
|
|
|
| `--harness` | `claude-code`, `codex` | Harness type |
|
|
|
|
|
|
|
|
|
|
|
|
## `mempalace instructions`
|
|
|
|
|
|
|
|
|
|
|
|
Output skill instructions to stdout.
|
|
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
|
mempalace instructions init
|
|
|
|
|
|
mempalace instructions search
|
|
|
|
|
|
mempalace instructions mine
|
|
|
|
|
|
mempalace instructions help
|
|
|
|
|
|
mempalace instructions status
|
|
|
|
|
|
```
|