fix(cli): point bm cloud setup hint at bm cloud sync-setup#780
Conversation
The post-setup "Next steps" output and cloud CLI docs instructed users to run `bm project sync-setup`, but the command is registered under the `cloud` Typer app as `bm cloud sync-setup`. Following the hint produced "No such command 'sync-setup'". Closes #779 Signed-off-by: Drew Cain <groksrc@gmail.com>
|
Claude finished @groksrc's task in 1m 17s —— View job Code Review
Summary: This is a clean, minimal, correct fix. The command Team ChecklistCode Quality & Standards
Testing & Documentation
Basic Memory Architecture
Security & Performance
Compatibility
Verdict: LGTM ✓ — The root cause (wrong namespace in the hint) is correctly diagnosed and fully fixed in both the CLI output and the docs. The PR is appropriately scoped with no unrelated changes.
|
Summary
bm cloud setupprintedbm project sync-setup ...in its "Next steps", but the command is registered under thecloudTyper app (@cloud_app.command("sync-setup")incli/commands/cloud/project_sync.py:275). Following the hint producedNo such command 'sync-setup'.cli/commands/cloud/core_commands.py:182) and indocs/cloud-cli.md(4 occurrences) with the correctbm cloud sync-setup.Closes #779
Test plan
bm cloud setup"Next steps" output now showsbm cloud sync-setup <name> <path>bm cloud sync-setup --helpresolves (sanity check the command path is unchanged)docs/cloud-cli.mdno longer referencesbm project sync-setup🤖 Generated with Claude Code