@sma1lboy/kobe 0.7.24 → 0.7.26
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 -0
- package/dist/cli/index.js +865 -189
- package/dist/web-ui/assets/AppShell-CQxa6abu.js +7 -0
- package/dist/web-ui/assets/{ChatTerminal-j3zmSA6m.js → ChatTerminal-BMSvAiAB.js} +2 -2
- package/dist/web-ui/assets/ChatTranscript-BJhX29XX.js +11 -0
- package/dist/web-ui/assets/arrow-left-Cbh2rcaq.js +1 -0
- package/dist/web-ui/assets/board-l1dAjN3Y.js +6 -0
- package/dist/web-ui/assets/chips-D1mC9nB4.js +2 -0
- package/dist/web-ui/assets/index-CtJIPdVH.css +2 -0
- package/dist/web-ui/assets/index-i463t0Rc.js +10 -0
- package/dist/web-ui/assets/overview-DZo39fTv.js +1 -0
- package/dist/web-ui/assets/routes-DOqWXZU_.js +1 -0
- package/dist/web-ui/assets/tabs-7WK4MwGF.js +1 -0
- package/dist/web-ui/assets/task._taskId-DmEKhgY3.js +1 -0
- package/dist/web-ui/assets/terminal-BUdn99hL.js +1 -0
- package/dist/web-ui/assets/terminal-CapzGZr6.js +1 -0
- package/dist/web-ui/index.html +4 -3
- package/dist/web-ui/pty-server.mjs +85 -0
- package/package.json +1 -1
- package/dist/web-ui/assets/AppShell-C0hhV6qB.js +0 -16
- package/dist/web-ui/assets/index-BPEy1cTR.css +0 -2
- package/dist/web-ui/assets/index-CMnpXQhx.js +0 -10
- package/dist/web-ui/assets/jsx-runtime-bzQ4Vb5N.js +0 -1
- package/dist/web-ui/assets/overview-Gj7Z3GGU.js +0 -1
- package/dist/web-ui/assets/routes-BQZWyGJi.js +0 -1
- package/dist/web-ui/assets/task._taskId-CF3ph7W5.js +0 -1
- package/dist/web-ui/assets/triage-DT7sWoTl.js +0 -1
package/README.md
CHANGED
|
@@ -118,6 +118,21 @@ export KOBE_OPEN_EDITOR=/Applications/Cursor.app/Contents/Resources/app/bin/curs
|
|
|
118
118
|
|
|
119
119
|
For the full feature manifest, see [`CHANGELOG.md`](./CHANGELOG.md).
|
|
120
120
|
|
|
121
|
+
## Browser dashboard
|
|
122
|
+
|
|
123
|
+
kobe also ships a local web UI over the same tasks and sessions, for when you'd
|
|
124
|
+
rather drive things from a browser than the TUI:
|
|
125
|
+
|
|
126
|
+
```bash
|
|
127
|
+
kobe web # serves http://localhost:5173
|
|
128
|
+
kobe web --port 5180 # pick a different port
|
|
129
|
+
kobe web --help # all options (--bridge-only, --no-takeover, …)
|
|
130
|
+
```
|
|
131
|
+
|
|
132
|
+
It connects to the same daemon as the TUI, so tasks created in either surface
|
|
133
|
+
appear in both. The process model, routes, and security posture are documented
|
|
134
|
+
in [`docs/design/web-dashboard.md`](../../docs/design/web-dashboard.md).
|
|
135
|
+
|
|
121
136
|
## Custom themes
|
|
122
137
|
|
|
123
138
|
kobe ships a handful of bundled themes (`claude` is the default), and any JSON
|