bb-app 0.0.1-alpha.4 → 0.0.1
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 -2
- package/dist/bb-app.js +4 -1
- package/dist/bb-host-daemon.js +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,8 +17,7 @@ shared workspace with a web app, CLI, and server they can all operate through.
|
|
|
17
17
|
Use it to run work in threads, inspect progress, steer execution, and keep
|
|
18
18
|
humans and agents working in the same loop.
|
|
19
19
|
|
|
20
|
-
> Note: bb is in active development.
|
|
21
|
-
> an alpha while the install and first-run flow settles.
|
|
20
|
+
> Note: bb is in active development. Workflows and surfaces are still evolving.
|
|
22
21
|
|
|
23
22
|
## Quick Start
|
|
24
23
|
|
package/dist/bb-app.js
CHANGED
|
@@ -14174,6 +14174,9 @@ async function writeManagedConfigFile(args) {
|
|
|
14174
14174
|
}
|
|
14175
14175
|
}
|
|
14176
14176
|
function validateManagedConfigForWrite(config2) {
|
|
14177
|
+
if (config2.serverUrl !== void 0) {
|
|
14178
|
+
validateOptionalUrl("BB_SERVER_URL", config2.serverUrl);
|
|
14179
|
+
}
|
|
14177
14180
|
const env = config2.env;
|
|
14178
14181
|
if (env === void 0) {
|
|
14179
14182
|
return;
|
|
@@ -14918,7 +14921,7 @@ async function runBbApp(cliArgs = process.argv.slice(2)) {
|
|
|
14918
14921
|
env: process.env,
|
|
14919
14922
|
homeDir: homedir(),
|
|
14920
14923
|
options: parsedArgs.options,
|
|
14921
|
-
serverUrlMode: command.kind === "host-daemon" ? "managed" : "local"
|
|
14924
|
+
serverUrlMode: command.kind === "config" || command.kind === "host-daemon" ? "managed" : "local"
|
|
14922
14925
|
});
|
|
14923
14926
|
if (command.kind === "config") {
|
|
14924
14927
|
await runConfigCommand({
|
package/dist/bb-host-daemon.js
CHANGED
|
@@ -14154,6 +14154,9 @@ async function writeManagedConfigFile(args) {
|
|
|
14154
14154
|
}
|
|
14155
14155
|
}
|
|
14156
14156
|
function validateManagedConfigForWrite(config2) {
|
|
14157
|
+
if (config2.serverUrl !== void 0) {
|
|
14158
|
+
validateOptionalUrl("BB_SERVER_URL", config2.serverUrl);
|
|
14159
|
+
}
|
|
14157
14160
|
const env = config2.env;
|
|
14158
14161
|
if (env === void 0) {
|
|
14159
14162
|
return;
|