@creator-notes/cnotes 0.18.0 → 0.19.0

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/cnotes",
3
- "version": "0.18.0",
3
+ "version": "0.19.0",
4
4
  "description": "CLI for CreatorNotes — create notes, build canvases, search knowledge from the terminal",
5
5
  "type": "module",
6
6
  "bin": {
@@ -145,6 +145,14 @@ cnotes versions create <noteId> --description "what changed" --markdown-stdin <
145
145
  ```bash
146
146
  # List / get (archived canvases excluded by default)
147
147
  cnotes canvas list [--include-archived]
148
+ # Find a canvas by name, topic, or MEANING — semantic similarity over canvas-digest
149
+ # embeddings blended with lexical match (name / themes / digest), so a query sharing no
150
+ # words with a canvas can still surface it. This is the canvas-level counterpart to
151
+ # `cnotes search semantic` (which searches NOTE content); they are separate corpora, so to
152
+ # cover both you search each. Pass '*' or 'all' to enumerate every canvas. JSON results
153
+ # carry id, displayId, title, matchedBy (lexical|semantic|both), relevance (0..1),
154
+ # purpose, themes, contains, noteCount, snippet, and `open` (deep link).
155
+ cnotes canvas search "<query>" [--limit <n>]
148
156
  cnotes canvas get <canvasId>
149
157
  # `get` returns each node kind in its own array (nodes/textNodes/richtextNodes/
150
158
  # listNodes/canvasLinkNodes) AND a unified `allNodes` array — every node flattened
@@ -280,9 +288,13 @@ the right canvas, or to gauge a note's importance (many backlinks / on the home
280
288
  canvas = load-bearing). `cnotes schema --json` carries the same pointers under
281
289
  its `discovery` key.
282
290
 
283
- ### Semantic Search (`cnotes search` / `cnotes s`)
291
+ ### Search
292
+ `cnotes search semantic` searches NOTE content (vector + BM25); `cnotes canvas search`
293
+ searches CANVASES (name / themes / digest, semantic + lexical). They are separate corpora —
294
+ to cover both, search each.
284
295
  ```bash
285
- cnotes search semantic "<query>" [--limit <n>] [--canvas <canvasId>]
296
+ cnotes search semantic "<query>" [--limit <n>] [--canvas <canvasId>] # NOTES
297
+ cnotes canvas search "<query>" [--limit <n>] # CANVASES
286
298
  ```
287
299
 
288
300
  ### Types (`cnotes types` / `cnotes t`)