On first startup, this plugin checks whether the bm (Basic Memory) CLI is available on your system. If it's not found, the plugin runs uv tool install to install it automatically.
- The plugin checks if
bmexists onPATH - If missing, it executes
uv tool install "basic-memory @ git+https://github.com/basicmachines-co/basic-memory.git@main" --force - This installs the Basic Memory CLI into uv's managed tool directory (
~/.local/bin/bmon most systems)
- The plugin uses Node.js
child_process.execSyncto runuvas a shell command - This requires
uv(the Python package manager from Astral) to be installed on your system - The installation pulls from the public
basic-memoryGitHub repository - If
uvis not installed, the step is skipped gracefully — no error, no crash
You can install Basic Memory yourself before enabling the plugin:
uv tool install basic-memoryOr with pip:
pip install basic-memoryOnce bm is on your PATH, the plugin will find it and skip the auto-install step entirely.
If you want to control the exact binary the plugin uses, set bmPath in your plugin config to an absolute path:
{
"openclaw-basic-memory": {
config: {
bmPath: "/usr/local/bin/bm"
}
}
}The plugin will use that path directly and never attempt auto-installation.
- All knowledge graph data is stored as plain Markdown files on your local filesystem
- The plugin spawns a persistent
bm mcpprocess that indexes files into a local SQLite database - No data leaves your machine unless you explicitly configure Basic Memory Cloud
- The plugin does not collect telemetry
If you find a security issue, please email security@basicmemory.com or open a private advisory on GitHub.