@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 +1 -1
- package/skills/cn/SKILL.md +2 -2
package/package.json
CHANGED
package/skills/cn/SKILL.md
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|