vibora 1.0.4 → 1.0.6
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 +25 -40
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|

|
|
4
4
|
|
|
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
8
|
## Philosophy
|
|
9
9
|
|
|
@@ -36,6 +36,30 @@ bunx vibora@latest down # Stop the server
|
|
|
36
36
|
bunx vibora@latest status # Check if running
|
|
37
37
|
```
|
|
38
38
|
|
|
39
|
+
## Configuration
|
|
40
|
+
|
|
41
|
+
Settings are stored in `.vibora/settings.json`. The vibora directory is resolved in this order:
|
|
42
|
+
1. `VIBORA_DIR` environment variable (explicit override)
|
|
43
|
+
2. `.vibora` in current working directory (per-worktree isolation)
|
|
44
|
+
3. `~/.vibora` (default)
|
|
45
|
+
|
|
46
|
+
| Setting | Env Var | Default |
|
|
47
|
+
|---------|---------|---------|
|
|
48
|
+
| (base directory) | `VIBORA_DIR` | .vibora in CWD or ~/.vibora |
|
|
49
|
+
| port | `PORT` | 3333 |
|
|
50
|
+
| defaultGitReposDir | `VIBORA_GIT_REPOS_DIR` | ~ |
|
|
51
|
+
| taskCreationCommand | `VIBORA_TASK_CREATION_COMMAND` | `claude --dangerously-skip-permissions` |
|
|
52
|
+
| hostname | `VIBORA_HOSTNAME` | (empty) |
|
|
53
|
+
| sshPort | `VIBORA_SSH_PORT` | 22 |
|
|
54
|
+
| linearApiKey | `LINEAR_API_KEY` | null |
|
|
55
|
+
| githubPat | `GITHUB_PAT` | null |
|
|
56
|
+
|
|
57
|
+
Database path (`{viboraDir}/vibora.db`) and worktree path (`{viboraDir}/worktrees`) are derived from the vibora directory and not separately configurable.
|
|
58
|
+
|
|
59
|
+
Notification settings (sound, Slack, Discord, Pushover) are configured via the Settings UI and stored in `settings.json`.
|
|
60
|
+
|
|
61
|
+
Precedence: environment variable → settings.json → default
|
|
62
|
+
|
|
39
63
|
## Development
|
|
40
64
|
|
|
41
65
|
### Prerequisites
|
|
@@ -75,30 +99,6 @@ mise run db:generate # Generate migrations
|
|
|
75
99
|
mise run db:migrate # Apply migrations
|
|
76
100
|
```
|
|
77
101
|
|
|
78
|
-
## Configuration
|
|
79
|
-
|
|
80
|
-
Settings are stored in `.vibora/settings.json`. The vibora directory is resolved in this order:
|
|
81
|
-
1. `VIBORA_DIR` environment variable (explicit override)
|
|
82
|
-
2. `.vibora` in current working directory (per-worktree isolation)
|
|
83
|
-
3. `~/.vibora` (default)
|
|
84
|
-
|
|
85
|
-
| Setting | Env Var | Default |
|
|
86
|
-
|---------|---------|---------|
|
|
87
|
-
| (base directory) | `VIBORA_DIR` | .vibora in CWD or ~/.vibora |
|
|
88
|
-
| port | `PORT` | 3333 |
|
|
89
|
-
| defaultGitReposDir | `VIBORA_GIT_REPOS_DIR` | ~ |
|
|
90
|
-
| taskCreationCommand | `VIBORA_TASK_CREATION_COMMAND` | `claude --dangerously-skip-permissions` |
|
|
91
|
-
| hostname | `VIBORA_HOSTNAME` | (empty) |
|
|
92
|
-
| sshPort | `VIBORA_SSH_PORT` | 22 |
|
|
93
|
-
| linearApiKey | `LINEAR_API_KEY` | null |
|
|
94
|
-
| githubPat | `GITHUB_PAT` | null |
|
|
95
|
-
|
|
96
|
-
Database path (`{viboraDir}/vibora.db`) and worktree path (`{viboraDir}/worktrees`) are derived from the vibora directory and not separately configurable.
|
|
97
|
-
|
|
98
|
-
Notification settings (sound, Slack, Discord, Pushover) are configured via the Settings UI and stored in `settings.json`.
|
|
99
|
-
|
|
100
|
-
Precedence: environment variable → settings.json → default
|
|
101
|
-
|
|
102
102
|
## CLI
|
|
103
103
|
|
|
104
104
|
The CLI lets AI agents (like Claude Code) working inside task worktrees query and update task status.
|
|
@@ -136,21 +136,6 @@ vibora git diff # Git diff for current worktree
|
|
|
136
136
|
--pretty # Pretty-print JSON output
|
|
137
137
|
```
|
|
138
138
|
|
|
139
|
-
### Per-Worktree Development
|
|
140
|
-
|
|
141
|
-
To run an isolated Vibora instance in a worktree:
|
|
142
|
-
|
|
143
|
-
```bash
|
|
144
|
-
# Create .env with a different port
|
|
145
|
-
echo "PORT=3223" > .env
|
|
146
|
-
|
|
147
|
-
# Create local .vibora directory for isolated database
|
|
148
|
-
mkdir -p .vibora
|
|
149
|
-
|
|
150
|
-
# Run dev servers (VITE_BACKEND_PORT is set automatically from PORT)
|
|
151
|
-
mise run dev
|
|
152
|
-
```
|
|
153
|
-
|
|
154
139
|
## License
|
|
155
140
|
|
|
156
141
|
[PolyForm Shield 1.0.0](LICENSE)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vibora",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.0.6",
|
|
4
|
+
"description": "The Vibe Engineer's Cockpit",
|
|
5
5
|
"license": "PolyForm-Shield-1.0.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|