@sma1lboy/kobe 0.8.136 → 0.8.138
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 +15 -1
- package/dist/cli/index.js +326 -326
- package/dist/cli/kobe-run.js +979 -0
- package/dist/cli/kobe.js +4 -979
- package/dist/cli/rove-run.js +979 -0
- package/dist/cli/rove.js +4 -979
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,12 +2,26 @@
|
|
|
2
2
|
|
|
3
3
|
The published Rove CLI and PureTUI package.
|
|
4
4
|
|
|
5
|
+
Install it any of these ways:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
curl -fsSL https://rove.sma1lboy.me/install.sh | sh # installs Bun if needed, then Rove
|
|
9
|
+
npm install -g @sma1lboy/rove # npm
|
|
10
|
+
bun install -g @sma1lboy/rove # bun
|
|
11
|
+
npx @sma1lboy/rove # no install
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Then:
|
|
15
|
+
|
|
5
16
|
```bash
|
|
6
|
-
bun install -g @sma1lboy/rove
|
|
7
17
|
rove add /path/to/repo
|
|
8
18
|
rove
|
|
9
19
|
```
|
|
10
20
|
|
|
21
|
+
The CLI runs on the Bun runtime. The published `rove` / `kobe` bins are node
|
|
22
|
+
launchers that re-exec through Bun, so an `npm install -g` or `npx` on a
|
|
23
|
+
machine without Bun still ends up with a working Rove.
|
|
24
|
+
|
|
11
25
|
The package also keeps `kobe` as a compatibility alias. Both executable names
|
|
12
26
|
copy supported legacy state into `~/.rove` and `~/.config/rove` without deleting
|
|
13
27
|
or overwriting the old files; daemon-owned stores wait until the legacy writer
|