vibora 6.2.0 → 6.2.2
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 +9 -3
- package/bin/vibora.js +20 -1
- package/dist/assets/{index-Wb7ftm-O.js → index-Dd6uprtg.js} +86 -86
- package/dist/index.html +1 -1
- package/drizzle/meta/_journal.json +3 -3
- package/package.json +1 -1
- package/server/index.js +24 -16
package/README.md
CHANGED
|
@@ -101,17 +101,23 @@ See all your Claude Code sessions across every task and worktree in a single par
|
|
|
101
101
|
|
|
102
102
|

|
|
103
103
|
|
|
104
|
+
### App Deployment
|
|
105
|
+
|
|
106
|
+
Deploy applications directly from Vibora with Docker Compose. Edit compose files inline, configure environment variables, and manage services with automatic Traefik routing and optional Cloudflare DNS integration.
|
|
107
|
+
|
|
108
|
+

|
|
109
|
+
|
|
104
110
|
### Repositories
|
|
105
111
|
|
|
106
112
|
Manage your projects with quick actions. Create new tasks, open terminals, and configure repository settings from one place.
|
|
107
113
|
|
|
108
114
|

|
|
109
115
|
|
|
110
|
-
###
|
|
116
|
+
### Browser Preview
|
|
111
117
|
|
|
112
|
-
|
|
118
|
+
Preview your app alongside the agent terminal in a split-pane view. Watch changes in real-time as Claude iterates on your code.
|
|
113
119
|
|
|
114
|
-

|
|
115
121
|
|
|
116
122
|
### System Monitoring
|
|
117
123
|
|
package/bin/vibora.js
CHANGED
|
@@ -32499,6 +32499,15 @@ function isCommandInstalled(command) {
|
|
|
32499
32499
|
try {
|
|
32500
32500
|
execSync(`which ${command}`, { stdio: "ignore" });
|
|
32501
32501
|
return true;
|
|
32502
|
+
} catch {}
|
|
32503
|
+
return isShellAlias(command);
|
|
32504
|
+
}
|
|
32505
|
+
function isShellAlias(command) {
|
|
32506
|
+
const shell = process.env.SHELL || "/bin/bash";
|
|
32507
|
+
const shellName = shell.split("/").pop() || "bash";
|
|
32508
|
+
try {
|
|
32509
|
+
execSync(`${shellName} -ic "type ${command}" 2>/dev/null`, { stdio: "ignore" });
|
|
32510
|
+
return true;
|
|
32502
32511
|
} catch {
|
|
32503
32512
|
return false;
|
|
32504
32513
|
}
|
|
@@ -32507,6 +32516,16 @@ function getCommandVersion(command) {
|
|
|
32507
32516
|
try {
|
|
32508
32517
|
const output2 = execSync(`${command} --version`, { encoding: "utf-8", stdio: ["pipe", "pipe", "ignore"] });
|
|
32509
32518
|
return output2.trim().split(`
|
|
32519
|
+
`)[0];
|
|
32520
|
+
} catch {}
|
|
32521
|
+
const shell = process.env.SHELL || "/bin/bash";
|
|
32522
|
+
const shellName = shell.split("/").pop() || "bash";
|
|
32523
|
+
try {
|
|
32524
|
+
const output2 = execSync(`${shellName} -ic "${command} --version" 2>/dev/null`, {
|
|
32525
|
+
encoding: "utf-8",
|
|
32526
|
+
stdio: ["pipe", "pipe", "ignore"]
|
|
32527
|
+
});
|
|
32528
|
+
return output2.trim().split(`
|
|
32510
32529
|
`)[0];
|
|
32511
32530
|
} catch {
|
|
32512
32531
|
return null;
|
|
@@ -32610,7 +32629,7 @@ function installUv() {
|
|
|
32610
32629
|
var package_default = {
|
|
32611
32630
|
name: "vibora",
|
|
32612
32631
|
private: true,
|
|
32613
|
-
version: "6.2.
|
|
32632
|
+
version: "6.2.2",
|
|
32614
32633
|
description: "The Vibe Engineer's Cockpit",
|
|
32615
32634
|
license: "PolyForm-Shield-1.0.0",
|
|
32616
32635
|
type: "module",
|