@skillshub-labs/cli 0.1.17 → 0.1.18
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/README.md +14 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -39,36 +39,36 @@ Skills Hub supports synchronization with a wide range of AI agents, including An
|
|
|
39
39
|
- Rust toolchain (`rustup`) for Desktop (Tauri) source build
|
|
40
40
|
- Tauri platform prerequisites for your OS: [Tauri v2 prerequisites](https://v2.tauri.app/start/prerequisites/)
|
|
41
41
|
|
|
42
|
-
###
|
|
42
|
+
### App (macOS)
|
|
43
43
|
|
|
44
44
|
```bash
|
|
45
|
-
|
|
46
|
-
brew install skills-hub
|
|
47
|
-
skills-hub --version
|
|
45
|
+
curl -Ls https://potatodog1669.github.io/skills-hub/install.sh | sh
|
|
48
46
|
```
|
|
49
47
|
|
|
50
48
|
Upgrade:
|
|
51
49
|
|
|
52
50
|
```bash
|
|
53
|
-
|
|
54
|
-
brew upgrade skills-hub
|
|
51
|
+
curl -Ls https://potatodog1669.github.io/skills-hub/install.sh | sh
|
|
55
52
|
```
|
|
56
53
|
|
|
57
|
-
###
|
|
54
|
+
### CLI
|
|
55
|
+
|
|
56
|
+
#### CLI via Homebrew (macOS/Linux)
|
|
58
57
|
|
|
59
58
|
```bash
|
|
60
59
|
brew tap PotatoDog1669/skillshub
|
|
61
|
-
brew install
|
|
60
|
+
brew install skills-hub
|
|
61
|
+
skills-hub --version
|
|
62
62
|
```
|
|
63
63
|
|
|
64
64
|
Upgrade:
|
|
65
65
|
|
|
66
66
|
```bash
|
|
67
67
|
brew update
|
|
68
|
-
brew upgrade
|
|
68
|
+
brew upgrade skills-hub
|
|
69
69
|
```
|
|
70
70
|
|
|
71
|
-
|
|
71
|
+
#### CLI via npm
|
|
72
72
|
|
|
73
73
|
Install globally:
|
|
74
74
|
|
|
@@ -89,7 +89,7 @@ Upgrade:
|
|
|
89
89
|
npm i -g @skillshub-labs/cli@latest
|
|
90
90
|
```
|
|
91
91
|
|
|
92
|
-
###
|
|
92
|
+
### Build from Source (Desktop App)
|
|
93
93
|
|
|
94
94
|
```bash
|
|
95
95
|
git clone https://github.com/PotatoDog1669/skills-hub.git
|
|
@@ -111,7 +111,9 @@ Output directory:
|
|
|
111
111
|
|
|
112
112
|
- Latest releases: [GitHub Releases](https://github.com/PotatoDog1669/skills-hub/releases)
|
|
113
113
|
- Current releases include changelog + source archives (`zipball` / `tarball`).
|
|
114
|
-
- Desktop release assets include
|
|
114
|
+
- Desktop release assets include installer archives plus DMG fallbacks:
|
|
115
|
+
- `skills-hub_X.Y.Z_macos_aarch64.tar.gz`
|
|
116
|
+
- `skills-hub_X.Y.Z_macos_x64.tar.gz`
|
|
115
117
|
- `skills-hub_X.Y.Z_macos_aarch64.dmg`
|
|
116
118
|
- `skills-hub_X.Y.Z_macos_x64.dmg`
|
|
117
119
|
|
package/package.json
CHANGED