@@ -37,7 +37,7 @@ For a practical runbook, see [Memory + Task Flow](./MEMORY_TASK_FLOW.md).
3737openclaw plugins install @basicmemory/openclaw-basic-memory
3838
3939# Enable and assign to the memory slot
40- openclaw plugins enable basic-memory --slot memory
40+ openclaw plugins enable openclaw- basic-memory --slot memory
4141
4242# Restart the gateway
4343openclaw gateway restart
@@ -46,7 +46,7 @@ openclaw gateway restart
4646Verify:
4747``` bash
4848openclaw plugins list
49- openclaw plugins info basic-memory
49+ openclaw plugins info openclaw- basic-memory
5050```
5151
5252If ` uv ` is not installed, the ` bm ` CLI setup is skipped gracefully during install. Install ` uv ` first, then re-run the postinstall script:
@@ -64,7 +64,7 @@ git clone https://github.com/basicmachines-co/openclaw-basic-memory.git
6464cd openclaw-basic-memory
6565bun install
6666openclaw plugins install -l " $PWD "
67- openclaw plugins enable basic-memory --slot memory
67+ openclaw plugins enable openclaw- basic-memory --slot memory
6868openclaw gateway restart
6969```
7070
@@ -77,12 +77,12 @@ Or load directly from a path in your OpenClaw config:
7777 paths: [" ~/dev/openclaw-basic-memory" ]
7878 },
7979 entries: {
80- " basic-memory" : {
80+ " openclaw- basic-memory" : {
8181 enabled: true
8282 }
8383 },
8484 slots: {
85- memory: " basic-memory"
85+ memory: " openclaw- basic-memory"
8686 }
8787 }
8888}
@@ -120,7 +120,7 @@ This installs to the same `skills/` directory the plugin reads from, so updated
120120### Minimal (zero-config)
121121``` json5
122122{
123- " basic-memory" : {
123+ " openclaw- basic-memory" : {
124124 enabled: true
125125 }
126126}
@@ -131,7 +131,7 @@ This uses sensible defaults: auto-generated project name, maps Basic Memory to y
131131### Full configuration
132132``` json5
133133{
134- " basic-memory" : {
134+ " openclaw- basic-memory" : {
135135 enabled: true ,
136136 config: {
137137 project: " my-agent" , // BM project name (default: "openclaw-{hostname}")
@@ -499,7 +499,7 @@ bun run test:int # Real BM MCP integration tests
499499
500500## Publish to npm
501501
502- This package is published as ` @openclaw/ basic-memory ` .
502+ This package is published as ` @basicmemory/openclaw- basic-memory ` .
503503
504504``` bash
505505# 1) Verify release readiness (types + tests + npm pack dry run)
0 commit comments