vibora 0.1.9 → 0.1.10

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.
Files changed (2) hide show
  1. package/README.md +17 -10
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -16,7 +16,22 @@ A lightweight PM cockpit for streamlining the software development lifecycle. Vi
16
16
  - **Frontend**: React 19, TanStack Router & Query, xterm.js, Tailwind CSS, shadcn/ui (v4 with baseui support)
17
17
  - **Backend**: Hono.js on Bun, SQLite with Drizzle ORM, WebSocket for terminal I/O
18
18
 
19
- ## Getting Started
19
+ ## Quick Start
20
+
21
+ Run the latest vibora with a single command:
22
+
23
+ ```bash
24
+ bunx vibora@latest up
25
+ ```
26
+
27
+ This starts the vibora server as a daemon. Open http://localhost:3333 in your browser.
28
+
29
+ ```bash
30
+ bunx vibora@latest down # Stop the server
31
+ bunx vibora@latest status # Check if running
32
+ ```
33
+
34
+ ## Development
20
35
 
21
36
  ### Prerequisites
22
37
 
@@ -75,15 +90,7 @@ Precedence: environment variable → settings.json → default
75
90
 
76
91
  ## CLI
77
92
 
78
- Vibora includes a CLI for AI agents (like Claude Code) working inside task worktrees to query and update task status.
79
-
80
- ### Installation
81
-
82
- ```bash
83
- cd cli
84
- bun install
85
- bun link # Makes 'vibora' available globally
86
- ```
93
+ The CLI lets AI agents (like Claude Code) working inside task worktrees query and update task status.
87
94
 
88
95
  ### Usage
89
96
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibora",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "A lightweight PM cockpit for streamlining the software development lifecycle",
5
5
  "license": "PolyForm-Shield-1.0.0",
6
6
  "repository": {