@gobi-ai/cli 1.3.8 → 2.0.1

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.
Files changed (38) hide show
  1. package/.claude-plugin/marketplace.json +5 -6
  2. package/.claude-plugin/plugin.json +3 -4
  3. package/README.md +174 -82
  4. package/commands/space-explore.md +10 -10
  5. package/commands/space-share.md +13 -7
  6. package/dist/attachments.js +2 -1
  7. package/dist/commands/draft.js +2 -3
  8. package/dist/commands/global.js +212 -72
  9. package/dist/commands/init.js +5 -5
  10. package/dist/commands/{notes.js → saved.js} +115 -23
  11. package/dist/commands/space.js +121 -111
  12. package/dist/commands/sync.js +2 -56
  13. package/dist/commands/update.js +14 -8
  14. package/dist/commands/utils.js +6 -0
  15. package/dist/commands/vault.js +113 -0
  16. package/dist/main.js +4 -8
  17. package/package.json +2 -2
  18. package/skills/gobi-core/SKILL.md +19 -15
  19. package/skills/gobi-core/references/space.md +18 -19
  20. package/skills/gobi-draft/SKILL.md +3 -3
  21. package/skills/gobi-homepage/SKILL.md +21 -19
  22. package/skills/gobi-media/SKILL.md +2 -2
  23. package/skills/gobi-saved/SKILL.md +59 -0
  24. package/skills/gobi-saved/references/saved.md +52 -0
  25. package/skills/gobi-sense/SKILL.md +8 -4
  26. package/skills/gobi-space/SKILL.md +55 -38
  27. package/skills/gobi-space/references/global.md +87 -26
  28. package/skills/gobi-space/references/space.md +49 -61
  29. package/skills/gobi-vault/SKILL.md +92 -0
  30. package/skills/{gobi-core/references/sync.md → gobi-vault/references/vault.md} +41 -2
  31. package/dist/commands/brain.js +0 -141
  32. package/dist/commands/feed.js +0 -148
  33. package/skills/gobi-brain/SKILL.md +0 -100
  34. package/skills/gobi-brain/references/brain.md +0 -66
  35. package/skills/gobi-feed/SKILL.md +0 -43
  36. package/skills/gobi-feed/references/feed.md +0 -80
  37. package/skills/gobi-notes/SKILL.md +0 -52
  38. package/skills/gobi-notes/references/notes.md +0 -82
@@ -1,82 +0,0 @@
1
- # gobi notes
2
-
3
- ```
4
- Usage: gobi notes [options] [command]
5
-
6
- Personal notes (create, list, get, edit, delete).
7
-
8
- Options:
9
- -h, --help display help for command
10
-
11
- Commands:
12
- list [options] List your notes. Without --date, returns recent notes via cursor pagination. With --date, returns all notes for that day.
13
- get <noteId> Get a single note by id.
14
- create [options] Create a note. Provide --content (use '-' for stdin) and/or attachments.
15
- edit [options] <noteId> Edit a note. Provide --content and/or --agent-id.
16
- delete <noteId> Delete a note you authored.
17
- help [command] display help for command
18
- ```
19
-
20
- ## list
21
-
22
- ```
23
- Usage: gobi notes list [options]
24
-
25
- List your notes. Without --date, returns recent notes via cursor pagination. With --date, returns all notes for that day.
26
-
27
- Options:
28
- --date <date> Filter to a single day (YYYY-MM-DD)
29
- --timezone <tz> IANA timezone name (default: system timezone)
30
- --limit <number> Items per page (1-100) (default: "50")
31
- --cursor <string> Pagination cursor from previous response
32
- -h, --help display help for command
33
- ```
34
-
35
- ## get
36
-
37
- ```
38
- Usage: gobi notes get [options] <noteId>
39
-
40
- Get a single note by id.
41
-
42
- Options:
43
- -h, --help display help for command
44
- ```
45
-
46
- ## create
47
-
48
- ```
49
- Usage: gobi notes create [options]
50
-
51
- Create a note. Provide --content (use '-' for stdin) and/or attachments.
52
-
53
- Options:
54
- --content <content> Note content (markdown supported, use "-" for stdin)
55
- --timezone <tz> IANA timezone name (default: system timezone)
56
- --agent-id <number> Optional agent id to associate with the note
57
- -h, --help display help for command
58
- ```
59
-
60
- ## edit
61
-
62
- ```
63
- Usage: gobi notes edit [options] <noteId>
64
-
65
- Edit a note. Provide --content and/or --agent-id.
66
-
67
- Options:
68
- --content <content> New note content (markdown supported, use "-" for stdin)
69
- --agent-id <number> New agent id, or "null" to clear the association
70
- -h, --help display help for command
71
- ```
72
-
73
- ## delete
74
-
75
- ```
76
- Usage: gobi notes delete [options] <noteId>
77
-
78
- Delete a note you authored.
79
-
80
- Options:
81
- -h, --help display help for command
82
- ```