Problem
After running bm cloud setup, the "Next steps" output instructs users to configure sync for an existing project with:
bm project sync-setup research ~/Documents/research
But that command does not exist — it's registered under the cloud app, not project:
$ bm project sync-setup main ~/main
Usage: bm project [OPTIONS] COMMAND [ARGS]...
Try 'bm project --help' for help.
╭─ Error ───────────────────────────────────────────────╮
│ No such command 'sync-setup'. │
╰───────────────────────────────────────────────────────╯
The actual command is bm cloud sync-setup (registered via @cloud_app.command("sync-setup") in src/basic_memory/cli/commands/cloud/project_sync.py:275).
Reproduce
bm cloud setup
# follow the "Next steps" hint:
bm project sync-setup <name> <path> # ❌ fails
bm cloud sync-setup <name> <path> # ✅ works
Affected locations
src/basic_memory/cli/commands/cloud/core_commands.py:182 — the hint printed by bm cloud setup
docs/cloud-cli.md — 4 occurrences in the cloud CLI guide
Fix
Replace bm project sync-setup with bm cloud sync-setup in the CLI output and docs. PR to follow.
Problem
After running
bm cloud setup, the "Next steps" output instructs users to configure sync for an existing project with:But that command does not exist — it's registered under the
cloudapp, notproject:The actual command is
bm cloud sync-setup(registered via@cloud_app.command("sync-setup")insrc/basic_memory/cli/commands/cloud/project_sync.py:275).Reproduce
Affected locations
src/basic_memory/cli/commands/cloud/core_commands.py:182— the hint printed bybm cloud setupdocs/cloud-cli.md— 4 occurrences in the cloud CLI guideFix
Replace
bm project sync-setupwithbm cloud sync-setupin the CLI output and docs. PR to follow.