@@ -28,6 +28,13 @@ nylio workspaces list
2828nylio documents create --title " Draft"
2929nylio documents list --limit 10 --offset 0
3030nylio documents get < document-id-or-url>
31+ nylio documents import ./draft.docx
32+ nylio documents import ./notes.md
33+ nylio documents import ./my-vault
34+ nylio comments list --document < document-id-or-url>
35+ nylio comments create --document < document-id-or-url> --text " Please clarify this section."
36+ nylio comments reply --comment < comment-id> --text " Updated in the latest pass."
37+ nylio comments resolve --thread < thread-id>
3138nylio documents edit --document < document-id-or-url> --old-string " <oldString>" --new-string " <newString>"
3239cat replacement.txt | nylio documents edit --document < document-id-or-url> --old-string " <oldString>" --new-string-stdin
3340nylio documents replace --document < document-id-or-url> --markdown " <full-enhanced-markdown-body>"
@@ -116,8 +123,11 @@ brew install nylio
116123
117124- Unknown flags fail fast instead of being ignored.
118125- Write commands accept explicit flags instead of requiring positional-only input.
126+ - ` nylio documents import <path> ` uploads a local ` .docx ` , ` .odt ` , Markdown, text, or Obsidian vault ` .zip ` file and creates personal documents.
127+ - Passing a local directory to ` nylio documents import ` packages it as an Obsidian vault ZIP before upload.
119128- ` nylio documents replace --stdin ` reads the replacement body from stdin.
120129- ` nylio documents edit --old-string-stdin ` and ` --new-string-stdin ` let you pipe one side of the edit.
130+ - ` nylio comments create --author-mode assistant ` and ` nylio comments reply --author-mode assistant ` post from the user's AI assistant label.
121131- ` --dry-run ` previews ` documents edit ` and ` documents replace ` requests without sending them.
122132
123133## Auth
0 commit comments