@creator-notes/cli 0.2.3 → 0.2.5

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.2.3",
3
+ "version": "0.2.5",
4
4
  "description": "CLI for CreatorNotes — create notes, build canvases, search knowledge from the terminal",
5
5
  "type": "module",
6
6
  "bin": {
@@ -196,6 +196,7 @@ cn config set-server <url>
196
196
  ```
197
197
  - Only use inline `--markdown "..."` for very short, single-line content.
198
198
  - The server converts markdown to TipTap JSON automatically.
199
+ - **Always start markdown content with a `# h1` heading.** This becomes the note title. Follow proper markdown structure: `## h2` for major sections, `### h3` for subsections. Well-structured heading hierarchy is expected for all notes.
199
200
  - **Relationship mentions in markdown**: Use `[NOTE-123](relationship:references)` or `[NOTE-123: Title](relationship:references)` syntax — plain text "NOTE-123" does NOT create clickable mentions.
200
201
  - Supported relationship types: `depends-on`, `blocks`, `related-to`, `derived-from`, `references`, `extends`, `implements`, `invalidates`, `duplicates`
201
202
  - Simple mention shorthand: `[NOTE-123]` or `[NOTE-123: Title]` (defaults to "references")
@@ -236,6 +237,11 @@ Use `--size` to control text node font size (default: `heading`):
236
237
  | `heading` (default) | Section headers, zone titles, canvas labels |
237
238
  | `paragraph` | Descriptions, annotations, supporting context |
238
239
 
240
+ #### Text Node Style
241
+
242
+ - **Never use ALL CAPS** for text node content. Use title case instead (e.g., "Key Tensions" not "KEY TENSIONS").
243
+ - Keep text labels concise — they are structural signposts, not paragraphs.
244
+
239
245
  #### Positioning Algorithm
240
246
 
241
247
  1. **Build the graph** — list all notes and their relationships.