vibora 6.2.1 → 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 +6 -0
- package/bin/vibora.js +20 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -113,6 +113,12 @@ Manage your projects with quick actions. Create new tasks, open terminals, and c
|
|
|
113
113
|
|
|
114
114
|

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

|
|
121
|
+
|
|
116
122
|
### System Monitoring
|
|
117
123
|
|
|
118
124
|
Keep an eye on system resources while your agents work. CPU, memory, and disk usage at a glance.
|
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",
|