@sma1lboy/kobe 0.5.13 → 0.5.16
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 +2 -5
- package/dist/bin/kobed.js +1584 -313
- package/dist/cli/index.js +10057 -2701
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -28,11 +28,10 @@ that's the gap kobe fills.
|
|
|
28
28
|
|
|
29
29
|
[](https://www.npmjs.com/package/@sma1lboy/kobe)
|
|
30
30
|
|
|
31
|
-
You need
|
|
31
|
+
You need two things on `PATH`:
|
|
32
32
|
|
|
33
33
|
- [**Bun**](https://bun.sh) ≥ 1.0 — kobe's renderer is opentui, which uses Bun-FFI.
|
|
34
34
|
- [**`claude`** CLI](https://docs.anthropic.com/en/docs/claude-code) — the engine kobe drives. Run `claude --version` to confirm it's installed and signed in.
|
|
35
|
-
- **`tmux`** — the embedded terminal pane uses one tmux session per task. On macOS: `brew install tmux`.
|
|
36
35
|
|
|
37
36
|
Then:
|
|
38
37
|
|
|
@@ -148,9 +147,7 @@ and confirm `claude --version` works in the same shell you launched kobe from.
|
|
|
148
147
|
**`bun: command not found`** — install [Bun](https://bun.sh) (`curl -fsSL https://bun.sh/install | bash`).
|
|
149
148
|
kobe's renderer requires Bun ≥ 1.0; it does not run under Node.
|
|
150
149
|
|
|
151
|
-
**The terminal pane is blank
|
|
152
|
-
The embedded terminal is one tmux session per task; without `tmux` on `PATH`,
|
|
153
|
-
the pane stays empty but the rest of kobe still works.
|
|
150
|
+
**The terminal pane is blank** — kobe starts your `$SHELL` through Bun's native PTY. Confirm `$SHELL` points at an installed shell, your Bun version supports `Bun.spawn({ terminal })`, and the active task's worktree path still exists. `KOBE_TERMINAL_BACKEND=pipe` is available only as a fallback.
|
|
154
151
|
|
|
155
152
|
**`posix_spawnp failed` when running `bun run test:behavior`** — on macOS arm64,
|
|
156
153
|
Bun's installer occasionally ships `node-pty`'s prebuilt `spawn-helper` without
|