vibora 2.12.4 → 2.13.1
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 +99 -76
- package/dist/assets/{index-_20k-d6F.js → index-DMxoDyAi.js} +59 -59
- package/dist/index.html +1 -1
- package/package.json +1 -1
- package/server/index.js +47 -8
package/README.md
CHANGED
|
@@ -1,13 +1,30 @@
|
|
|
1
|
-
|
|
1
|
+
# Vibora
|
|
2
2
|
|
|
3
|
+
The Vibe Engineer's Cockpit. Orchestrate Claude Code across parallel workstreams from a terminal-first command center.
|
|
3
4
|
|
|
4
|
-
|
|
5
|
+

|
|
5
6
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
- **Task
|
|
7
|
+
## What It Does
|
|
8
|
+
|
|
9
|
+
**Vibora is for developers who take Claude Code seriously.** Not as a novelty, but as their primary interface for getting things done. If you live in the terminal and want to run multiple Claude Code sessions across isolated workstreams, Vibora is your cockpit.
|
|
10
|
+
|
|
11
|
+
- **Task Terminals View** — See and control all your Claude Code sessions across every worktree in one parallel view. The killer feature for orchestrating multiple agents simultaneously.
|
|
12
|
+
- **Run Local or Remote** — Client/server architecture lets you run agents on your machine or a remote server. Launch tasks, close your laptop, and your agents keep working.
|
|
13
|
+
- **Git Worktree Isolation** — Each task runs in its own worktree. Your main branch stays clean until you're ready to merge.
|
|
14
|
+
- **Automatic Status Sync** — The Claude Code plugin syncs task status as you work. When Claude stops and waits for input, the task moves to "In Review". When you respond, it's back "In Progress".
|
|
15
|
+
- **Persistent Terminals** — Named terminal tabs that survive restarts for ongoing work that doesn't fit into task worktrees.
|
|
16
|
+
|
|
17
|
+
## Key Features
|
|
18
|
+
|
|
19
|
+
- **Parallel Agent Orchestration** — Run multiple Claude Code sessions across different tasks and worktrees
|
|
20
|
+
- **Local or Remote Execution** — Run on your machine or a remote server; agents continue working when you disconnect
|
|
21
|
+
- **Git Worktree Isolation** — Safe experimentation without touching your main branch
|
|
22
|
+
- **Claude Code Plugin** — Automatic status sync, slash commands, session continuity
|
|
23
|
+
- **Kanban Task Management** — Visual task tracking from planning to done
|
|
24
|
+
- **PR Monitoring** — Track pull requests across repositories
|
|
25
|
+
- **Linear Integration** — Sync task status with Linear tickets
|
|
26
|
+
- **System Monitoring** — CPU, memory, and disk usage at a glance
|
|
27
|
+
- **Cross-Platform** — Desktop app (Mac, Linux) or web application
|
|
11
28
|
|
|
12
29
|
## Quick Start
|
|
13
30
|
|
|
@@ -15,38 +32,30 @@ Requires [Bun](https://bun.sh/) and [Claude Code](https://claude.ai/code).
|
|
|
15
32
|
|
|
16
33
|
### Desktop App (Recommended)
|
|
17
34
|
|
|
18
|
-
Download the latest release
|
|
35
|
+
Download the latest release:
|
|
19
36
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
37
|
+
| Platform | Download |
|
|
38
|
+
|----------|----------|
|
|
39
|
+
| **macOS** (Apple Silicon) | [Download DMG](https://vibora-utils.knowsuchagency.workers.dev/download/dmg) |
|
|
40
|
+
| **Linux** | [Download AppImage](https://vibora-utils.knowsuchagency.workers.dev/download/appimage) |
|
|
23
41
|
|
|
24
|
-
The desktop app bundles everything—just install and run. It will
|
|
25
|
-
- Start the Vibora server automatically
|
|
26
|
-
- Install the Claude Code plugin
|
|
27
|
-
- Check for updates on startup
|
|
42
|
+
The desktop app bundles everything—just install and run. It will start the server, install the Claude Code plugin, and check for updates automatically.
|
|
28
43
|
|
|
29
44
|
> **macOS note**: On first launch, right-click the app and select "Open" to bypass Gatekeeper.
|
|
30
45
|
|
|
31
|
-
### Web Application
|
|
46
|
+
### Web Application
|
|
32
47
|
|
|
33
|
-
Run Vibora as a web server
|
|
34
|
-
|
|
35
|
-
#### Install via curl
|
|
48
|
+
Run Vibora as a web server for browser access or remote deployment.
|
|
36
49
|
|
|
37
50
|
```bash
|
|
51
|
+
# Install and start with curl
|
|
38
52
|
curl -fsSL https://raw.githubusercontent.com/knowsuchagency/vibora/main/install.sh | bash
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
This installs vibora, the Claude Code plugin, and starts the server.
|
|
42
53
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
```bash
|
|
54
|
+
# Or install via npm
|
|
46
55
|
npx vibora@latest up
|
|
47
56
|
```
|
|
48
57
|
|
|
49
|
-
If using npm, install the Claude Code plugin separately
|
|
58
|
+
If using npm, install the Claude Code plugin separately:
|
|
50
59
|
|
|
51
60
|
```bash
|
|
52
61
|
claude plugin marketplace add knowsuchagency/vibora
|
|
@@ -55,39 +64,71 @@ claude plugin install vibora@vibora --scope user
|
|
|
55
64
|
|
|
56
65
|
Open http://localhost:7777 in your browser.
|
|
57
66
|
|
|
58
|
-
|
|
67
|
+
## Features
|
|
68
|
+
|
|
69
|
+
### Task Terminals View
|
|
70
|
+
|
|
71
|
+
The killer feature. See all your Claude Code sessions across every task and worktree in a single parallel view. Each task runs in an isolated git worktree, and you can monitor and interact with all of them simultaneously.
|
|
72
|
+
|
|
73
|
+

|
|
74
|
+
|
|
75
|
+
### Kanban Board
|
|
76
|
+
|
|
77
|
+
Track tasks from planning to done. Create tasks that automatically spin up isolated git worktrees, and watch their status update in real-time as you work with Claude Code.
|
|
78
|
+
|
|
79
|
+

|
|
80
|
+
|
|
81
|
+
### Repositories
|
|
82
|
+
|
|
83
|
+
Manage your projects with quick actions. Create new tasks, open terminals, and configure repository settings from one place.
|
|
84
|
+
|
|
85
|
+

|
|
86
|
+
|
|
87
|
+
### PR Review
|
|
88
|
+
|
|
89
|
+
Monitor pull requests across all your repositories. Filter by status, organization, and more.
|
|
90
|
+
|
|
91
|
+

|
|
92
|
+
|
|
93
|
+
### System Monitoring
|
|
94
|
+
|
|
95
|
+
Keep an eye on system resources while your agents work. CPU, memory, and disk usage at a glance.
|
|
96
|
+
|
|
97
|
+

|
|
98
|
+
|
|
99
|
+
## Claude Code Plugin
|
|
100
|
+
|
|
101
|
+
The Vibora plugin for Claude Code enables seamless integration:
|
|
59
102
|
|
|
60
|
-
|
|
103
|
+
- **Automatic Status Sync** — Task moves to "In Review" when Claude stops, "In Progress" when you respond
|
|
104
|
+
- **Slash Commands** — `/review`, `/pr`, `/notify`, `/linear`, `/task-info`
|
|
105
|
+
- **Session Continuity** — Claude sessions are tied to task IDs
|
|
106
|
+
|
|
107
|
+
The plugin is automatically installed in task worktrees when tasks are created. To install globally:
|
|
108
|
+
|
|
109
|
+
```bash
|
|
110
|
+
claude plugin marketplace add knowsuchagency/vibora
|
|
111
|
+
claude plugin install vibora@vibora --scope user
|
|
112
|
+
```
|
|
113
|
+
|
|
114
|
+
## Remote Server Setup
|
|
115
|
+
|
|
116
|
+
Run the backend on a remote server and connect from anywhere. Launch tasks, close your laptop, and your agents keep working. As AI becomes more capable of autonomous work, this becomes essential.
|
|
61
117
|
|
|
62
118
|
1. **On the remote server:**
|
|
63
119
|
```bash
|
|
64
|
-
# Install and start
|
|
65
120
|
npx vibora@latest up
|
|
66
|
-
|
|
67
|
-
# Configure for remote access
|
|
68
121
|
vibora config set remoteHost your-server.example.com
|
|
69
122
|
vibora config set basicAuthUsername admin
|
|
70
123
|
vibora config set basicAuthPassword your-secure-password
|
|
71
124
|
```
|
|
72
125
|
|
|
73
|
-
2. **Connect from desktop app
|
|
74
|
-
- Launch the app
|
|
75
|
-
- Click "Connect to Remote" (if local server not found)
|
|
76
|
-
- Enter the server URL: `your-server.example.com:7777`
|
|
77
|
-
- Enter credentials when prompted
|
|
78
|
-
|
|
79
|
-
3. **Or access via browser:**
|
|
80
|
-
Open `http://your-server.example.com:7777`
|
|
126
|
+
2. **Connect from desktop app** — Click "Connect to Remote" and enter the server URL
|
|
81
127
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
```bash
|
|
85
|
-
vibora up # Start server daemon
|
|
86
|
-
vibora down # Stop the server
|
|
87
|
-
vibora status # Check if running
|
|
88
|
-
```
|
|
128
|
+
3. **Or access via browser** — Open `http://your-server.example.com:7777`
|
|
89
129
|
|
|
90
|
-
|
|
130
|
+
<details>
|
|
131
|
+
<summary><strong>Configuration</strong></summary>
|
|
91
132
|
|
|
92
133
|
Settings are stored in `.vibora/settings.json`. The vibora directory is resolved in this order:
|
|
93
134
|
|
|
@@ -107,37 +148,24 @@ Settings are stored in `.vibora/settings.json`. The vibora directory is resolved
|
|
|
107
148
|
| githubPat | `GITHUB_PAT` | null |
|
|
108
149
|
| language | — | null (auto-detect) |
|
|
109
150
|
|
|
110
|
-
Notification settings (sound, Slack, Discord, Pushover) are configured via the Settings UI or CLI
|
|
151
|
+
Notification settings (sound, Slack, Discord, Pushover) are configured via the Settings UI or CLI.
|
|
111
152
|
|
|
112
153
|
Precedence: environment variable → settings.json → default
|
|
113
154
|
|
|
114
155
|
### Linear Integration
|
|
115
156
|
|
|
116
|
-
Vibora can sync task status with Linear tickets. Configure `linearApiKey` in settings or set
|
|
157
|
+
Vibora can sync task status with Linear tickets. Configure `linearApiKey` in settings or set `LINEAR_API_KEY`. When a task is linked to a Linear ticket, status changes in Vibora automatically update Linear.
|
|
117
158
|
|
|
118
159
|
### Basic Auth
|
|
119
160
|
|
|
120
|
-
Set `basicAuthUsername` and `basicAuthPassword`
|
|
161
|
+
Set `basicAuthUsername` and `basicAuthPassword` to require authentication when exposing Vibora over a network.
|
|
121
162
|
|
|
122
|
-
|
|
163
|
+
</details>
|
|
123
164
|
|
|
124
|
-
|
|
165
|
+
<details>
|
|
166
|
+
<summary><strong>CLI Reference</strong></summary>
|
|
125
167
|
|
|
126
|
-
|
|
127
|
-
- **Task → IN_PROGRESS** when you respond to Claude
|
|
128
|
-
|
|
129
|
-
The plugin also provides slash commands (`/review`, `/pr`, `/notify`, `/linear`, `/task-info`). The plugin is automatically installed in task worktrees when tasks are created, and Claude sessions are tied to task IDs for session continuity.
|
|
130
|
-
|
|
131
|
-
To install the plugin globally:
|
|
132
|
-
|
|
133
|
-
```bash
|
|
134
|
-
claude plugin marketplace add knowsuchagency/vibora
|
|
135
|
-
claude plugin install vibora@vibora --scope user
|
|
136
|
-
```
|
|
137
|
-
|
|
138
|
-
## CLI
|
|
139
|
-
|
|
140
|
-
The CLI lets AI agents (like Claude Code) working inside task worktrees query and update task status.
|
|
168
|
+
The CLI lets AI agents working inside task worktrees query and update task status.
|
|
141
169
|
|
|
142
170
|
### Server Management
|
|
143
171
|
|
|
@@ -199,11 +227,8 @@ vibora config set <key> <value> # Set a config value
|
|
|
199
227
|
vibora notifications # Show notification settings
|
|
200
228
|
vibora notifications enable # Enable notifications
|
|
201
229
|
vibora notifications disable # Disable notifications
|
|
202
|
-
vibora notifications test <ch> # Test a channel
|
|
203
|
-
vibora
|
|
204
|
-
# Set a channel config
|
|
205
|
-
|
|
206
|
-
vibora notify <title> [message] # Send a notification to all enabled channels
|
|
230
|
+
vibora notifications test <ch> # Test a channel
|
|
231
|
+
vibora notify <title> [message] # Send a notification
|
|
207
232
|
```
|
|
208
233
|
|
|
209
234
|
### Global Options
|
|
@@ -214,14 +239,12 @@ vibora notify <title> [message] # Send a notification to all enabled channels
|
|
|
214
239
|
--pretty # Pretty-print JSON output
|
|
215
240
|
```
|
|
216
241
|
|
|
242
|
+
</details>
|
|
243
|
+
|
|
217
244
|
## Internationalization
|
|
218
245
|
|
|
219
246
|
Available in English and Chinese. Set the `language` setting or let it auto-detect from your browser.
|
|
220
247
|
|
|
221
|
-
## z.ai Integration
|
|
222
|
-
|
|
223
|
-
Works with [z.ai](https://z.ai) for Claude Code proxy integration. Configure via the Settings UI.
|
|
224
|
-
|
|
225
248
|
## Development
|
|
226
249
|
|
|
227
250
|
See [DEVELOPMENT.md](DEVELOPMENT.md) for development setup, architecture, and contributing guidelines.
|