vibora 6.2.3 → 6.2.4

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/bin/vibora.js CHANGED
@@ -32629,7 +32629,7 @@ function installUv() {
32629
32629
  var package_default = {
32630
32630
  name: "vibora",
32631
32631
  private: true,
32632
- version: "6.2.3",
32632
+ version: "6.2.4",
32633
32633
  description: "The Vibe Engineer's Cockpit",
32634
32634
  license: "PolyForm-Shield-1.0.0",
32635
32635
  type: "module",
@@ -32847,6 +32847,7 @@ async function handleUpCommand(flags) {
32847
32847
  VIBORA_PACKAGE_ROOT: packageRoot,
32848
32848
  VIBORA_VERSION: package_default.version,
32849
32849
  BUN_PTY_LIB: ptyLibPath,
32850
+ VIBORA_CLAUDE_INSTALLED: "1",
32850
32851
  ...debug && { LOG_LEVEL: "debug", DEBUG: "1" }
32851
32852
  }
32852
32853
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibora",
3
- "version": "6.2.3",
3
+ "version": "6.2.4",
4
4
  "description": "The Vibe Engineer's Cockpit",
5
5
  "license": "PolyForm-Shield-1.0.0",
6
6
  "repository": {
package/server/index.js CHANGED
@@ -152876,8 +152876,9 @@ function isCommandAvailable(command) {
152876
152876
  }
152877
152877
  }
152878
152878
  app13.get("/dependencies", (c) => {
152879
+ const claudeInstalledFromEnv = process.env.VIBORA_CLAUDE_INSTALLED === "1";
152879
152880
  const claudeMissingFromEnv = process.env.VIBORA_CLAUDE_MISSING === "1";
152880
- const claudeCheck = claudeMissingFromEnv ? { installed: false } : isCommandAvailable("claude");
152881
+ const claudeCheck = claudeInstalledFromEnv ? { installed: true } : claudeMissingFromEnv ? { installed: false } : isCommandAvailable("claude");
152881
152882
  const dtachCheck = isCommandAvailable("dtach");
152882
152883
  return c.json({
152883
152884
  claudeCode: claudeCheck,