@creator-notes/cli 0.8.0 → 0.8.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@creator-notes/cli",
3
- "version": "0.8.0",
3
+ "version": "0.8.1",
4
4
  "description": "CLI for CreatorNotes — create notes, build canvases, search knowledge from the terminal",
5
5
  "type": "module",
6
6
  "bin": {
@@ -252,12 +252,12 @@ cn config set-server <url>
252
252
  When you reference a workspace or canvas in a response (so the user can click through), build the URL yourself in this exact shape:
253
253
 
254
254
  ```
255
- <origin>/ws/<workspaceId>?canvasId=<canvasId>
255
+ <origin>/<workspaceId>?canvasId=<canvasId>
256
256
  ```
257
257
 
258
258
  - `<origin>` is `https://creatornotes.app` for prod, or `http://localhost:3000` when the active session / `--server` points at local dev. Match whichever the CLI is currently talking to.
259
259
  - `<workspaceId>` and `<canvasId>` are the Convex IDs returned by `cn workspace current` / `cn canvas get` / `cn canvas list --json`. Use raw IDs — do not slug-ify.
260
- - To link a workspace without a specific canvas, omit the query: `<origin>/ws/<workspaceId>`. The app will redirect to the last-visited or home canvas.
260
+ - To link a workspace without a specific canvas, omit the query: `<origin>/<workspaceId>`. The app will redirect to the last-visited or home canvas.
261
261
 
262
262
  **Do not invent path segments.** These shapes do NOT exist and will 404 or redirect somewhere wrong:
263
263