@gobi-ai/cli 2.0.34 → 2.0.36

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.
@@ -8,12 +8,12 @@ description: >-
8
8
  allowed-tools: Bash(gobi:*)
9
9
  metadata:
10
10
  author: gobi-ai
11
- version: "2.0.34"
11
+ version: "2.0.36"
12
12
  ---
13
13
 
14
14
  # gobi-vault
15
15
 
16
- Gobi vault commands for publishing your vault profile and syncing files (v2.0.34).
16
+ Gobi vault commands for publishing your vault profile and syncing files (v2.0.36).
17
17
 
18
18
  Requires gobi-cli installed and authenticated. See gobi-core skill for setup.
19
19
 
@@ -1,142 +0,0 @@
1
- # gobi artifact
2
-
3
- ```
4
- Usage: gobi artifact [options] [command]
5
-
6
- Versioned creations attached to posts. Kinds: image | video | gif | markdown | meeting_summary. Always human-owned; revisions form a draft/published tree (at most one published per artifact).
7
-
8
- Options:
9
- -h, --help display help for command
10
-
11
- Commands:
12
- create [options] Create an artifact. markdown/meeting_summary kinds take a body via --file, --content, or stdin ("-"). image/gif/video kinds upload --file. Pass --post-id to attach
13
- the new artifact to a post.
14
- revise [options] <artifactId> Add a draft revision to an artifact. New body via --file, --content, or stdin (markdown), or --file (media). Use --from to branch off a specific revision.
15
- publish [options] <artifactId> Publish a revision (becomes the artifact's single published revision).
16
- revert [options] <artifactId> Revert the artifact's published pointer to an earlier revision.
17
- history <artifactId> List the artifact's full revision tree (owner only).
18
- download [options] <artifactId> Download an artifact's content. markdown → write the body; media → fetch the bytes. Defaults to the published/latest revision; pass --revision to pick one. Writes
19
- to --out or stdout (markdown).
20
- delete <artifactId> Delete an artifact (and its revision tree).
21
- get <artifactId> Get one artifact with its current revision.
22
- list [options] List your artifacts (newest first).
23
- help [command] display help for command
24
- ```
25
-
26
- ## create
27
-
28
- ```
29
- Usage: gobi artifact create [options]
30
-
31
- Create an artifact. markdown/meeting_summary kinds take a body via --file, --content, or stdin ("-"). image/gif/video kinds upload --file. Pass --post-id to attach the new artifact to a post.
32
-
33
- Options:
34
- --kind <kind> Artifact kind: image | video | gif | markdown | meeting_summary
35
- --file <path> Local file: markdown body (markdown kinds) or media file (media kinds)
36
- --content <md> Markdown body inline (markdown kinds; pass "-" for stdin)
37
- --title <t> Display title
38
- --vault-slug <slug> Anchor vault for [[wikilink]] resolution (markdown kinds). Stored in metadata.vaultSlug.
39
- --post-id <id> Attach the created artifact to this post afterward
40
- --auto-attachments Upload wiki-linked [[files]] to webdrive before creating (markdown kinds; uses --vault-slug)
41
- --change-note <note> Note describing this revision
42
- -h, --help display help for command
43
- ```
44
-
45
- ## revise
46
-
47
- ```
48
- Usage: gobi artifact revise [options] <artifactId>
49
-
50
- Add a draft revision to an artifact. New body via --file, --content, or stdin (markdown), or --file (media). Use --from to branch off a specific revision.
51
-
52
- Options:
53
- --file <path> Local file: markdown body (markdown kinds) or media file (media kinds)
54
- --content <md> Markdown body inline (markdown kinds; pass "-" for stdin)
55
- --change-note <note> Note describing this revision
56
- --from <revisionId> Branch the new draft off this revision (defaults to the latest)
57
- --auto-attachments Upload wiki-linked [[files]] to webdrive before revising (markdown kinds; uses the artifact's stored metadata.vaultSlug)
58
- -h, --help display help for command
59
- ```
60
-
61
- ## publish
62
-
63
- ```
64
- Usage: gobi artifact publish [options] <artifactId>
65
-
66
- Publish a revision (becomes the artifact's single published revision).
67
-
68
- Options:
69
- --revision <revisionId> Revision to publish
70
- -h, --help display help for command
71
- ```
72
-
73
- ## revert
74
-
75
- ```
76
- Usage: gobi artifact revert [options] <artifactId>
77
-
78
- Revert the artifact's published pointer to an earlier revision.
79
-
80
- Options:
81
- --to <revisionId> Revision to revert to
82
- -h, --help display help for command
83
- ```
84
-
85
- ## history
86
-
87
- ```
88
- Usage: gobi artifact history [options] <artifactId>
89
-
90
- List the artifact's full revision tree (owner only).
91
-
92
- Options:
93
- -h, --help display help for command
94
- ```
95
-
96
- ## download
97
-
98
- ```
99
- Usage: gobi artifact download [options] <artifactId>
100
-
101
- Download an artifact's content. markdown → write the body; media → fetch the bytes. Defaults to the published/latest revision; pass --revision to pick one. Writes to --out or stdout (markdown).
102
-
103
- Options:
104
- --revision <revisionId> Specific revision (defaults to the artifact's current revision)
105
- --out <path> Write to this file (markdown defaults to stdout)
106
- -h, --help display help for command
107
- ```
108
-
109
- ## delete
110
-
111
- ```
112
- Usage: gobi artifact delete [options] <artifactId>
113
-
114
- Delete an artifact (and its revision tree).
115
-
116
- Options:
117
- -h, --help display help for command
118
- ```
119
-
120
- ## get
121
-
122
- ```
123
- Usage: gobi artifact get [options] <artifactId>
124
-
125
- Get one artifact with its current revision.
126
-
127
- Options:
128
- -h, --help display help for command
129
- ```
130
-
131
- ## list
132
-
133
- ```
134
- Usage: gobi artifact list [options]
135
-
136
- List your artifacts (newest first).
137
-
138
- Options:
139
- --kind <kind> Filter by kind: image | video | gif | markdown | meeting_summary
140
- --limit <n> Max items to return
141
- -h, --help display help for command
142
- ```