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 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
- bunx vibora@latest up
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
- bunx vibora@latest down # Stop the server
36
- bunx vibora@latest status # Check if running
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`.