vibora 1.9.1 → 1.10.0
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 +12 -15
- package/dist/assets/index-BMm5AnYN.js +45 -0
- package/dist/assets/index-BNhD6i8B.js +45 -0
- package/dist/assets/index-BfcOSnqG.css +1 -0
- package/dist/assets/index-Bj6X8q5U.js +46 -0
- package/dist/assets/index-BrWX1YZT.css +1 -0
- package/dist/assets/index-BxOt05pH.css +1 -0
- package/dist/assets/index-ByL08tgg.js +45 -0
- package/dist/assets/index-COn-Eyu7.css +1 -0
- package/dist/assets/index-ClQ5DUcr.js +46 -0
- package/dist/assets/index-Co_u49xL.css +1 -0
- package/dist/assets/index-D5T2n3lt.css +1 -0
- package/dist/assets/index-DCMXlbkM.css +1 -0
- package/dist/assets/index-DDBvX7Ij.css +1 -0
- package/dist/assets/index-DJxCuTf-.js +45 -0
- package/dist/assets/index-DP-OAlLv.js +116 -0
- package/dist/assets/index-DS5B_viR.js +116 -0
- package/dist/assets/index-DgP1TgfA.js +45 -0
- package/dist/assets/index-DijiKhVm.js +46 -0
- package/dist/assets/index-Djf_9c_I.css +1 -0
- package/dist/assets/index-DptSra7n.js +116 -0
- package/dist/assets/index-Hcd8Y1ma.js +45 -0
- package/dist/assets/index-I_FT38E3.css +1 -0
- package/dist/assets/index-IdRTHnwv.js +51 -0
- package/dist/assets/index-ViklVZfD.js +51 -0
- package/dist/assets/index-Xk8D-HCD.css +1 -0
- package/dist/assets/index-f56gTmVJ.css +1 -0
- package/dist/assets/index-qBnZOT-E.js +45 -0
- package/dist/assets/index-r3_O3Fa_.js +45 -0
- package/dist/index.html +2 -2
- package/package.json +1 -1
- package/server/index.js +136 -7
package/README.md
CHANGED
|
@@ -5,37 +5,34 @@
|
|
|
5
5
|
|
|
6
6
|
The Vibe Engineer's Cockpit. Vibora marries basic project management with actual software development by embedding terminals directly into the workflow.
|
|
7
7
|
|
|
8
|
+
Available in English and Chinese. Works with [z.ai](https://z.ai) for Claude Code proxy integration.
|
|
9
|
+
|
|
8
10
|
## Philosophy
|
|
9
11
|
|
|
10
12
|
- **Terminal-first AI agent orchestration** — Agents (Claude Code, Codex, etc.) run in terminals as-is. No abstraction layer, no wrapper APIs, no feature parity maintenance as agents evolve.
|
|
11
13
|
- **Opinionated with few opinions** — Provides structure without dictating workflow.
|
|
12
14
|
- **Git worktree isolation** — Tasks create isolated git worktrees, with architecture supporting evolution toward more general task types.
|
|
13
15
|
|
|
14
|
-
## Requirements
|
|
15
|
-
|
|
16
|
-
- [Bun](https://bun.sh/) — JavaScript runtime
|
|
17
|
-
- [dtach](https://github.com/crigler/dtach) — Terminal session persistence
|
|
18
|
-
|
|
19
|
-
## Tech Stack
|
|
20
|
-
|
|
21
|
-
- **Frontend**: React 19, TanStack Router & Query, xterm.js, Tailwind CSS, shadcn/ui (v4 with baseui support)
|
|
22
|
-
- **Backend**: Hono.js on Bun, SQLite with Drizzle ORM, WebSocket for terminal I/O
|
|
23
|
-
|
|
24
16
|
## Quick Start
|
|
25
17
|
|
|
26
|
-
Run the latest vibora with a single command:
|
|
18
|
+
Requires [Node.js](https://nodejs.org/). Run the latest vibora with a single command:
|
|
27
19
|
|
|
28
20
|
```bash
|
|
29
|
-
|
|
21
|
+
npx vibora@latest up
|
|
30
22
|
```
|
|
31
23
|
|
|
32
|
-
This starts the vibora server as a daemon. Open http://localhost:3333 in your browser.
|
|
24
|
+
This starts the vibora server as a daemon. Open http://localhost:3333 in your browser. The `up` command will help you install any missing dependencies.
|
|
33
25
|
|
|
34
26
|
```bash
|
|
35
|
-
|
|
36
|
-
|
|
27
|
+
npx vibora@latest down # Stop the server
|
|
28
|
+
npx vibora@latest status # Check if running
|
|
37
29
|
```
|
|
38
30
|
|
|
31
|
+
## Tech Stack
|
|
32
|
+
|
|
33
|
+
- **Frontend**: React 19, TanStack Router & Query, xterm.js, Tailwind CSS, shadcn/ui (v4 with baseui support)
|
|
34
|
+
- **Backend**: Hono.js on Bun, SQLite with Drizzle ORM, WebSocket for terminal I/O
|
|
35
|
+
|
|
39
36
|
## Configuration
|
|
40
37
|
|
|
41
38
|
Settings are stored in `.vibora/settings.json`.
|