vibora 2.6.3 → 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 +1 -4
- package/bin/vibora.js +5 -3
- package/dist/assets/index-C5s40ZhZ.js +124 -0
- package/dist/assets/index-CWnf8iCM.css +1 -0
- package/dist/goat.jpeg +0 -0
- package/dist/index.html +2 -2
- package/drizzle/0009_jittery_sir_ram.sql +1 -0
- package/drizzle/0010_secret_jasper_sitwell.sql +1 -0
- package/drizzle/meta/0009_snapshot.json +515 -0
- package/drizzle/meta/0010_snapshot.json +522 -0
- package/drizzle/meta/_journal.json +14 -0
- package/package.json +1 -1
- package/server/index.js +7426 -128
- package/dist/assets/index-BtG6gcrm.css +0 -1
- package/dist/assets/index-D1FU-kRb.js +0 -120
package/README.md
CHANGED
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+

|
|
2
2
|
|
|
3
|
-

|
|
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
|
-
|
|
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]
|
|
1035
|
+
up [--host] [--debug] Start Vibora server (daemon)
|
|
1034
1036
|
down Stop Vibora server
|
|
1035
1037
|
status Check if server is running
|
|
1036
1038
|
|