@gobi-ai/cli 2.0.20 → 2.0.22

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.
@@ -1,136 +0,0 @@
1
- # gobi saved
2
-
3
- ```
4
- Usage: gobi saved [options] [command]
5
-
6
- Saved-knowledge commands (notes and bookmarked posts).
7
-
8
- Options:
9
- -h, --help display help for command
10
-
11
- Commands:
12
- list-notes [options] List your notes. Without --date, returns recent notes via cursor pagination. With --date, returns all notes for that day.
13
- get-note <noteId> Get a single note by id.
14
- create-note [options] Create a note. Provide --content (use '-' for stdin), or --draft-id to source content from a draft.
15
- edit-note [options] <noteId> Edit a note. Provide --content and/or --agent-id.
16
- delete-note <noteId> Delete a note you authored.
17
- list-posts [options] List posts you have bookmarked (paginated).
18
- get-post <postId> Get a saved post snapshot by post id.
19
- create-post [options] Bookmark a post or reply by id. Records a snapshot in your saved-posts collection.
20
- delete-post <postId> Remove a post from your saved-posts collection.
21
- help [command] display help for command
22
- ```
23
-
24
- ## list-notes
25
-
26
- ```
27
- Usage: gobi saved list-notes [options]
28
-
29
- List your notes. Without --date, returns recent notes via cursor pagination. With --date, returns all notes for that day.
30
-
31
- Options:
32
- --date <date> Filter to a single day (YYYY-MM-DD)
33
- --timezone <tz> IANA timezone name (default: system timezone)
34
- --limit <number> Items per page (default: "20")
35
- --cursor <string> Pagination cursor from previous response
36
- -h, --help display help for command
37
- ```
38
-
39
- ## get-note
40
-
41
- ```
42
- Usage: gobi saved get-note [options] <noteId>
43
-
44
- Get a single note by id.
45
-
46
- Options:
47
- -h, --help display help for command
48
- ```
49
-
50
- ## create-note
51
-
52
- ```
53
- Usage: gobi saved create-note [options]
54
-
55
- Create a note. Provide --content (use '-' for stdin), or --draft-id to source content from a draft.
56
-
57
- Options:
58
- --content <content> Note content (markdown supported, use "-" for stdin)
59
- --timezone <tz> IANA timezone name (default: system timezone)
60
- --agent-id <number> Optional agent id to associate with the note
61
- --draft-id <draftId> Use this draft as the source of content (mutually exclusive with --content). The draft's title is prepended as an H1 heading. On success, links the note back by recording
62
- noteId on draft.metadata so the client can render an 'Open note' button.
63
- -h, --help display help for command
64
- ```
65
-
66
- ## edit-note
67
-
68
- ```
69
- Usage: gobi saved edit-note [options] <noteId>
70
-
71
- Edit a note. Provide --content and/or --agent-id.
72
-
73
- Options:
74
- --content <content> New note content (markdown supported, use "-" for stdin)
75
- --agent-id <number> New agent id, or "null" to clear the association
76
- -h, --help display help for command
77
- ```
78
-
79
- ## delete-note
80
-
81
- ```
82
- Usage: gobi saved delete-note [options] <noteId>
83
-
84
- Delete a note you authored.
85
-
86
- Options:
87
- -h, --help display help for command
88
- ```
89
-
90
- ## list-posts
91
-
92
- ```
93
- Usage: gobi saved list-posts [options]
94
-
95
- List posts you have bookmarked (paginated).
96
-
97
- Options:
98
- --type <type> Filter by type: all|article|space-post (default: "all")
99
- --limit <number> Items per page (default: "20")
100
- --cursor <string> Pagination cursor from previous response
101
- -h, --help display help for command
102
- ```
103
-
104
- ## get-post
105
-
106
- ```
107
- Usage: gobi saved get-post [options] <postId>
108
-
109
- Get a saved post snapshot by post id.
110
-
111
- Options:
112
- -h, --help display help for command
113
- ```
114
-
115
- ## create-post
116
-
117
- ```
118
- Usage: gobi saved create-post [options]
119
-
120
- Bookmark a post or reply by id. Records a snapshot in your saved-posts collection.
121
-
122
- Options:
123
- --source <id> Source post or reply id to bookmark (numeric)
124
- -h, --help display help for command
125
- ```
126
-
127
- ## delete-post
128
-
129
- ```
130
- Usage: gobi saved delete-post [options] <postId>
131
-
132
- Remove a post from your saved-posts collection.
133
-
134
- Options:
135
- -h, --help display help for command
136
- ```