@owloops/browserbird 1.2.9 → 1.2.10

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.
Files changed (2) hide show
  1. package/dist/index.mjs +5 -5
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -122,8 +122,8 @@ function unknownSubcommand(subcommand, command, validCommands) {
122
122
  /** @fileoverview ASCII banner displayed on daemon startup and in help text. */
123
123
  const pkg = createRequire(import.meta.url)("../package.json");
124
124
  const buildInfo = [];
125
- buildInfo.push(`commit: ${"c3481c8e048a6121f0a2c6cd163cf61863ca5d9d".substring(0, 7)}`);
126
- buildInfo.push(`built: 2026-03-09T11:42:49+04:00`);
125
+ buildInfo.push(`commit: ${"bddda226a98294fa5e272a0f50b3e8f52dab935f".substring(0, 7)}`);
126
+ buildInfo.push(`built: 2026-03-09T14:46:24+04:00`);
127
127
  const buildString = buildInfo.length > 0 ? ` (${buildInfo.join(", ")})` : "";
128
128
  const VERSION = `browserbird ${pkg.version}${buildString}`;
129
129
  const BIRD = [
@@ -3962,8 +3962,7 @@ async function startDaemon(options) {
3962
3962
  clearBrowserLock();
3963
3963
  startWorker(controller.signal);
3964
3964
  loadDotEnv(envPath);
3965
- let currentConfig = loadConfig(configPath);
3966
- ensureMcpConfig(currentConfig, configDir);
3965
+ let currentConfig = loadRawConfig(configPath);
3967
3966
  let slackHandle = null;
3968
3967
  let setupMode = true;
3969
3968
  const getConfig = () => currentConfig;
@@ -4005,7 +4004,8 @@ async function startDaemon(options) {
4005
4004
  logger.info("config reloaded");
4006
4005
  };
4007
4006
  if (hasSlackTokens(configPath)) {
4008
- if (!currentConfig.slack.botToken || !currentConfig.slack.appToken) throw new Error("slack tokens not resolvable (set SLACK_BOT_TOKEN/SLACK_APP_TOKEN or configure in browserbird.json)");
4007
+ currentConfig = loadConfig(configPath);
4008
+ ensureMcpConfig(currentConfig, configDir);
4009
4009
  setSetting("onboarding_completed", "true");
4010
4010
  startFull(currentConfig);
4011
4011
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@owloops/browserbird",
3
- "version": "1.2.9",
3
+ "version": "1.2.10",
4
4
  "description": "Self-hosted AI agent for Slack with a real browser, a scheduler, and a web dashboard",
5
5
  "type": "module",
6
6
  "bin": {