@basicmemory/openclaw-basic-memory 0.1.0-alpha.1 → 0.1.0-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -37,7 +37,7 @@ For a practical runbook, see [Memory + Task Flow](./MEMORY_TASK_FLOW.md).
37
37
  openclaw plugins install @basicmemory/openclaw-basic-memory
38
38
 
39
39
  # Enable and assign to the memory slot
40
- openclaw plugins enable basic-memory --slot memory
40
+ openclaw plugins enable openclaw-basic-memory --slot memory
41
41
 
42
42
  # Restart the gateway
43
43
  openclaw gateway restart
@@ -46,7 +46,7 @@ openclaw gateway restart
46
46
  Verify:
47
47
  ```bash
48
48
  openclaw plugins list
49
- openclaw plugins info basic-memory
49
+ openclaw plugins info openclaw-basic-memory
50
50
  ```
51
51
 
52
52
  If `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
64
64
  cd openclaw-basic-memory
65
65
  bun install
66
66
  openclaw plugins install -l "$PWD"
67
- openclaw plugins enable basic-memory --slot memory
67
+ openclaw plugins enable openclaw-basic-memory --slot memory
68
68
  openclaw gateway restart
69
69
  ```
70
70
 
@@ -77,12 +77,12 @@ Or load directly from a path in your OpenClaw config:
77
77
  paths: ["~/dev/openclaw-basic-memory"]
78
78
  },
79
79
  entries: {
80
- "basic-memory": {
80
+ "openclaw-basic-memory": {
81
81
  enabled: true
82
82
  }
83
83
  },
84
84
  slots: {
85
- memory: "basic-memory"
85
+ memory: "openclaw-basic-memory"
86
86
  }
87
87
  }
88
88
  }
@@ -120,7 +120,7 @@ This installs to the same `skills/` directory the plugin reads from, so updated
120
120
  ### Minimal (zero-config)
121
121
  ```json5
122
122
  {
123
- "basic-memory": {
123
+ "openclaw-basic-memory": {
124
124
  enabled: true
125
125
  }
126
126
  }
@@ -131,7 +131,7 @@ This uses sensible defaults: auto-generated project name, maps Basic Memory to y
131
131
  ### Full configuration
132
132
  ```json5
133
133
  {
134
- "basic-memory": {
134
+ "openclaw-basic-memory": {
135
135
  enabled: true,
136
136
  config: {
137
137
  project: "my-agent", // BM project name (default: "openclaw-{hostname}")
@@ -499,7 +499,7 @@ bun run test:int # Real BM MCP integration tests
499
499
 
500
500
  ## Publish to npm
501
501
 
502
- This package is published as `@openclaw/basic-memory`.
502
+ This package is published as `@basicmemory/openclaw-basic-memory`.
503
503
 
504
504
  ```bash
505
505
  # 1) Verify release readiness (types + tests + npm pack dry run)
package/index.ts CHANGED
@@ -30,7 +30,7 @@ import { registerSearchTool } from "./tools/search-notes.ts"
30
30
  import { registerWriteTool } from "./tools/write-note.ts"
31
31
 
32
32
  export default {
33
- id: "basic-memory",
33
+ id: "openclaw-basic-memory",
34
34
  name: "Basic Memory",
35
35
  description:
36
36
  "Local-first knowledge graph for OpenClaw — persistent memory with graph search and composited memory_search",
@@ -81,7 +81,7 @@ export default {
81
81
 
82
82
  // --- Service lifecycle ---
83
83
  api.registerService({
84
- id: "basic-memory",
84
+ id: "openclaw-basic-memory",
85
85
  start: async (ctx: { config?: unknown; workspaceDir?: string }) => {
86
86
  log.info("starting...")
87
87
 
@@ -1,5 +1,5 @@
1
1
  {
2
- "id": "basic-memory",
2
+ "id": "openclaw-basic-memory",
3
3
  "kind": "memory",
4
4
  "skills": [
5
5
  "skills/memory-tasks",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@basicmemory/openclaw-basic-memory",
3
- "version": "0.1.0-alpha.1",
3
+ "version": "0.1.0-alpha.2",
4
4
  "type": "module",
5
5
  "description": "Basic Memory plugin for OpenClaw — local-first knowledge graph for agent memory",
6
6
  "license": "MIT",