@gobi-ai/cli 2.0.5 → 2.0.7
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/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/dist/commands/global.js +3 -3
- package/dist/commands/saved.js +1 -1
- package/dist/commands/space.js +5 -2
- package/package.json +1 -1
- package/skills/gobi-core/SKILL.md +2 -2
- package/skills/gobi-draft/SKILL.md +2 -2
- package/skills/gobi-media/SKILL.md +2 -2
- package/skills/gobi-saved/SKILL.md +2 -2
- package/skills/gobi-sense/SKILL.md +2 -2
- package/skills/gobi-space/SKILL.md +2 -2
- package/skills/gobi-vault/SKILL.md +2 -2
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
"name": "gobi-ai"
|
|
5
5
|
},
|
|
6
6
|
"description": "Claude Code plugin for the Gobi collaborative knowledge platform CLI",
|
|
7
|
-
"version": "2.0.
|
|
7
|
+
"version": "2.0.7",
|
|
8
8
|
"plugins": [
|
|
9
9
|
{
|
|
10
10
|
"name": "gobi",
|
|
11
11
|
"description": "Manage the Gobi collaborative knowledge platform from the command line. Publish vault profiles, create posts and replies, manage saved notes and posts, manage sessions, generate images and videos.",
|
|
12
|
-
"version": "2.0.
|
|
12
|
+
"version": "2.0.7",
|
|
13
13
|
"author": {
|
|
14
14
|
"name": "gobi-ai"
|
|
15
15
|
},
|
package/dist/commands/global.js
CHANGED
|
@@ -44,7 +44,7 @@ export function registerGlobalCommand(program) {
|
|
|
44
44
|
params.cursor = opts.cursor;
|
|
45
45
|
if (opts.following)
|
|
46
46
|
params.following = "true";
|
|
47
|
-
const resp = (await apiGet(`/feed`, params));
|
|
47
|
+
const resp = (await apiGet(`/posts/feed`, params));
|
|
48
48
|
if (isJsonMode(global)) {
|
|
49
49
|
jsonOut({
|
|
50
50
|
items: resp.data || [],
|
|
@@ -120,8 +120,8 @@ export function registerGlobalCommand(program) {
|
|
|
120
120
|
if (opts.cursor)
|
|
121
121
|
params.cursor = opts.cursor;
|
|
122
122
|
const [postResp, ancestorsResp] = await Promise.all([
|
|
123
|
-
apiGet(`/
|
|
124
|
-
apiGet(`/
|
|
123
|
+
apiGet(`/posts/${postId}`, params),
|
|
124
|
+
apiGet(`/posts/${postId}/ancestors`),
|
|
125
125
|
]);
|
|
126
126
|
const data = unwrapResp(postResp);
|
|
127
127
|
const pagination = (postResp.pagination || {});
|
package/dist/commands/saved.js
CHANGED
|
@@ -185,7 +185,7 @@ export function registerSavedCommand(program) {
|
|
|
185
185
|
.command("get-post <postId>")
|
|
186
186
|
.description("Get a saved post snapshot by post id.")
|
|
187
187
|
.action(async (postId) => {
|
|
188
|
-
const resp = (await apiGet(`/
|
|
188
|
+
const resp = (await apiGet(`/posts/${postId}`));
|
|
189
189
|
const data = unwrapResp(resp);
|
|
190
190
|
if (isJsonMode(saved)) {
|
|
191
191
|
jsonOut(data);
|
package/dist/commands/space.js
CHANGED
|
@@ -50,8 +50,11 @@ export function registerSpaceCommand(program) {
|
|
|
50
50
|
}
|
|
51
51
|
const lines = [];
|
|
52
52
|
for (const s of items) {
|
|
53
|
-
|
|
54
|
-
|
|
53
|
+
lines.push(`- [${s.slug}] ${s.name}`);
|
|
54
|
+
if (s.description)
|
|
55
|
+
lines.push(` Description: ${s.description}`);
|
|
56
|
+
if (s.rules)
|
|
57
|
+
lines.push(` Rules: ${s.rules}`);
|
|
55
58
|
}
|
|
56
59
|
console.log(`Spaces (${items.length}):\n` + lines.join("\n"));
|
|
57
60
|
});
|
package/package.json
CHANGED
|
@@ -9,12 +9,12 @@ description: >-
|
|
|
9
9
|
allowed-tools: Bash(gobi:*)
|
|
10
10
|
metadata:
|
|
11
11
|
author: gobi-ai
|
|
12
|
-
version: "2.0.
|
|
12
|
+
version: "2.0.7"
|
|
13
13
|
---
|
|
14
14
|
|
|
15
15
|
# gobi-core
|
|
16
16
|
|
|
17
|
-
Core CLI commands for the Gobi collaborative knowledge platform (v2.0.
|
|
17
|
+
Core CLI commands for the Gobi collaborative knowledge platform (v2.0.7).
|
|
18
18
|
|
|
19
19
|
## Prerequisites
|
|
20
20
|
|
|
@@ -10,12 +10,12 @@ description: >-
|
|
|
10
10
|
allowed-tools: Bash(gobi:*)
|
|
11
11
|
metadata:
|
|
12
12
|
author: gobi-ai
|
|
13
|
-
version: "2.0.
|
|
13
|
+
version: "2.0.7"
|
|
14
14
|
---
|
|
15
15
|
|
|
16
16
|
# gobi-draft
|
|
17
17
|
|
|
18
|
-
Gobi draft commands for managing agent-authored drafts (v2.0.
|
|
18
|
+
Gobi draft commands for managing agent-authored drafts (v2.0.7).
|
|
19
19
|
|
|
20
20
|
Requires gobi-cli installed and authenticated. See gobi-core skill for setup.
|
|
21
21
|
|
|
@@ -10,12 +10,12 @@ description: >-
|
|
|
10
10
|
allowed-tools: Bash(gobi:*)
|
|
11
11
|
metadata:
|
|
12
12
|
author: gobi-ai
|
|
13
|
-
version: "2.0.
|
|
13
|
+
version: "2.0.7"
|
|
14
14
|
---
|
|
15
15
|
|
|
16
16
|
# gobi-media
|
|
17
17
|
|
|
18
|
-
Gobi media generation commands (v2.0.
|
|
18
|
+
Gobi media generation commands (v2.0.7).
|
|
19
19
|
|
|
20
20
|
Requires gobi-cli installed and authenticated. See gobi-core skill for setup.
|
|
21
21
|
|
|
@@ -8,12 +8,12 @@ description: >-
|
|
|
8
8
|
allowed-tools: Bash(gobi:*)
|
|
9
9
|
metadata:
|
|
10
10
|
author: gobi-ai
|
|
11
|
-
version: "2.0.
|
|
11
|
+
version: "2.0.7"
|
|
12
12
|
---
|
|
13
13
|
|
|
14
14
|
# gobi-saved
|
|
15
15
|
|
|
16
|
-
Gobi saved-knowledge commands (v2.0.
|
|
16
|
+
Gobi saved-knowledge commands (v2.0.7).
|
|
17
17
|
|
|
18
18
|
Requires gobi-cli installed and authenticated. See gobi-core skill for setup.
|
|
19
19
|
|
|
@@ -7,12 +7,12 @@ description: >-
|
|
|
7
7
|
allowed-tools: Bash(gobi:*)
|
|
8
8
|
metadata:
|
|
9
9
|
author: gobi-ai
|
|
10
|
-
version: "2.0.
|
|
10
|
+
version: "2.0.7"
|
|
11
11
|
---
|
|
12
12
|
|
|
13
13
|
# gobi-sense
|
|
14
14
|
|
|
15
|
-
Gobi sense commands for activity and transcription data (v2.0.
|
|
15
|
+
Gobi sense commands for activity and transcription data (v2.0.7).
|
|
16
16
|
|
|
17
17
|
Requires gobi-cli installed and authenticated. See the **gobi-core** skill for setup.
|
|
18
18
|
|
|
@@ -10,12 +10,12 @@ description: >-
|
|
|
10
10
|
allowed-tools: Bash(gobi:*)
|
|
11
11
|
metadata:
|
|
12
12
|
author: gobi-ai
|
|
13
|
-
version: "2.0.
|
|
13
|
+
version: "2.0.7"
|
|
14
14
|
---
|
|
15
15
|
|
|
16
16
|
# gobi-space
|
|
17
17
|
|
|
18
|
-
Gobi space and global posts (v2.0.
|
|
18
|
+
Gobi space and global posts (v2.0.7).
|
|
19
19
|
|
|
20
20
|
Requires gobi-cli installed and authenticated. See the **gobi-core** skill for setup.
|
|
21
21
|
|
|
@@ -8,12 +8,12 @@ description: >-
|
|
|
8
8
|
allowed-tools: Bash(gobi:*)
|
|
9
9
|
metadata:
|
|
10
10
|
author: gobi-ai
|
|
11
|
-
version: "2.0.
|
|
11
|
+
version: "2.0.7"
|
|
12
12
|
---
|
|
13
13
|
|
|
14
14
|
# gobi-vault
|
|
15
15
|
|
|
16
|
-
Gobi vault commands for publishing your vault profile and syncing files (v2.0.
|
|
16
|
+
Gobi vault commands for publishing your vault profile and syncing files (v2.0.7).
|
|
17
17
|
|
|
18
18
|
Requires gobi-cli installed and authenticated. See gobi-core skill for setup.
|
|
19
19
|
|