Skip to content

Commit 44befbd

Browse files
phernandezclaude
andcommitted
chore: prepare for alpha release
πŸ”„ Rename tool files to match registered tool names (kebab-case convention): search.ts β†’ search-notes.ts, read.ts β†’ read-note.ts, etc. (9 source + 9 test files) πŸ“¦ Publish as @basicmemory/openclaw-basic-memory - Update package name from @openclaw/basic-memory - Fix files array to include renamed tools - Include scripts/setup-bm.sh in published package πŸ”Œ Register all 6 bundled skills in openclaw.plugin.json - Add memory-metadata-search and memory-notes πŸ“– Update README for npm-first install flow - Lead with openclaw plugins install - Move git clone to Development section - Document uv requirement with brew + curl options Update docs (CLAUDE.md, README.md, MEMORY_TASK_FLOW.md) to reflect all changes. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 249ba37 commit 44befbd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

40 files changed

+871
-896
lines changed

β€ŽAGENTS.mdβ€Ž

Lines changed: 0 additions & 526 deletions
This file was deleted.

β€ŽAGENTS.mdβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CLAUDE.md

β€ŽBASIC_MEMORY.mdβ€Ž

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -72,22 +72,20 @@ bm project bisync
7272

7373
All plugin tools accept an optional `project` parameter to operate on a different project:
7474

75-
```typescript
76-
bm_search({ query: "authentication", project: "other-project" })
77-
bm_read({ identifier: "notes/api-design", project: "docs" })
78-
bm_write({ title: "New Note", content: "...", folder: "notes", project: "research" })
75+
```
76+
search_notes(query="authentication", project="other-project")
77+
read_note(identifier="notes/api-design", project="docs")
78+
write_note(title="New Note", content="...", folder="notes", project="research")
7979
```
8080

8181
## Workspace Support
8282

8383
Workspaces group projects by owner (personal or organization):
8484

85-
```typescript
86-
// List all workspaces (personal + org)
87-
bm_workspace_list()
85+
```
86+
list_workspaces()
8887
89-
// List projects in a specific workspace
90-
bm_project_list({ workspace: "my-org" })
88+
list_memory_projects(workspace="my-org")
9189
```
9290

9391
## Auto-Recall

0 commit comments

Comments
Β (0)