vibora 2.7.0 → 2.8.0

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 CHANGED
@@ -1,8 +1,5 @@
1
- # Vibora
1
+ ![vibora-light](https://github.com/user-attachments/assets/4e686c0f-1871-4ad5-b500-1e7b80b7eff5)
2
2
 
3
- ![vibora](https://vibora-helper.knowsuchagency.workers.dev/)
4
-
5
- The Vibe Engineer's Cockpit. A terminal-first tool for orchestrating AI coding agents across isolated git worktrees.
6
3
 
7
4
  ## Philosophy
8
5
 
package/bin/vibora.js CHANGED
@@ -678,7 +678,8 @@ async function handleUpCommand(flags) {
678
678
  }
679
679
  const ptyLibPath = join3(packageRoot, "lib", ptyLibName);
680
680
  const viboraDir = getViboraDir();
681
- console.error("Starting Vibora server...");
681
+ const debug = flags.debug === "true";
682
+ console.error(`Starting Vibora server${debug ? " (debug mode)" : ""}...`);
682
683
  const serverProc = spawn("bun", [serverPath], {
683
684
  detached: true,
684
685
  stdio: "ignore",
@@ -689,7 +690,8 @@ async function handleUpCommand(flags) {
689
690
  HOST: host,
690
691
  VIBORA_DIR: viboraDir,
691
692
  VIBORA_PACKAGE_ROOT: packageRoot,
692
- BUN_PTY_LIB: ptyLibPath
693
+ BUN_PTY_LIB: ptyLibPath,
694
+ ...debug && { LOG_LEVEL: "debug", DEBUG: "1" }
693
695
  }
694
696
  });
695
697
  serverProc.unref();
@@ -1030,7 +1032,7 @@ Commands:
1030
1032
  tasks move <id> Move task to different status
1031
1033
  tasks delete <id> Delete a task
1032
1034
 
1033
- up [--host] Start Vibora server (daemon)
1035
+ up [--host] [--debug] Start Vibora server (daemon)
1034
1036
  down Stop Vibora server
1035
1037
  status Check if server is running
1036
1038