@sma1lboy/kobe 0.8.84 → 0.8.86
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 +5 -2
- package/dist/cli/index.js +398 -410
- package/dist/cli/kobe.js +957 -0
- package/dist/cli/pty-host-node.mjs +19 -9
- package/dist/cli/rove.js +957 -0
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -4,10 +4,13 @@ The published kobe CLI and PureTUI package.
|
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
bun install -g @sma1lboy/kobe
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
rove add /path/to/repo
|
|
8
|
+
rove
|
|
9
9
|
```
|
|
10
10
|
|
|
11
|
+
The package also keeps `kobe` as a compatibility alias. Both executable names
|
|
12
|
+
use the existing `~/.kobe` and `~/.config/kobe` state paths.
|
|
13
|
+
|
|
11
14
|
Plain `kobe` launches one React/opentui Workspace Host. Interactive engine and
|
|
12
15
|
shell processes are owned by the standalone PTY Host, so they survive TUI exits
|
|
13
16
|
and daemon restarts.
|