vibora 1.0.5 → 1.0.7

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 +22 -39
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -36,6 +36,28 @@ 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
+ Notification settings (sound, Slack, Discord, Pushover) are configured via the Settings UI and stored in `settings.json`.
58
+
59
+ Precedence: environment variable → settings.json → default
60
+
39
61
  ## Development
40
62
 
41
63
  ### Prerequisites
@@ -75,30 +97,6 @@ mise run db:generate # Generate migrations
75
97
  mise run db:migrate # Apply migrations
76
98
  ```
77
99
 
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
100
  ## CLI
103
101
 
104
102
  The CLI lets AI agents (like Claude Code) working inside task worktrees query and update task status.
@@ -136,21 +134,6 @@ vibora git diff # Git diff for current worktree
136
134
  --pretty # Pretty-print JSON output
137
135
  ```
138
136
 
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
137
  ## License
155
138
 
156
139
  [PolyForm Shield 1.0.0](LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibora",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "The Vibe Engineer's Cockpit",
5
5
  "license": "PolyForm-Shield-1.0.0",
6
6
  "repository": {