@owloops/browserbird 1.4.11 → 1.4.12

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 +2 -7
  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: ${"afb8a9cd1a061c41a693ba7afab3c7c68dddb413".substring(0, 7)}`);
126
- buildInfo.push(`built: 2026-03-12T00:11:52+04:00`);
125
+ buildInfo.push(`commit: ${"ce64ae50bb22317ece3c9a004cf5acbe44af2f01".substring(0, 7)}`);
126
+ buildInfo.push(`built: 2026-03-12T10:01:12+04:00`);
127
127
  const buildString = buildInfo.length > 0 ? ` (${buildInfo.join(", ")})` : "";
128
128
  const VERSION = `browserbird ${pkg.version}${buildString}`;
129
129
  const BIRD = [
@@ -3777,11 +3777,6 @@ function createSlackChannel(getConfig, signal) {
3777
3777
  if (!sessionUid) continue;
3778
3778
  await handleSessionRetry(sessionUid, channel, user ?? "unknown", getConfig(), handler);
3779
3779
  }
3780
- if (actionId === "session_stop") {
3781
- const sessionKey = action["value"];
3782
- if (!sessionKey) continue;
3783
- if (handler.killSession(sessionKey)) logger.info(`session stopped by ${user}: ${sessionKey}`);
3784
- }
3785
3780
  }
3786
3781
  }
3787
3782
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@owloops/browserbird",
3
- "version": "1.4.11",
3
+ "version": "1.4.12",
4
4
  "description": "AI agent orchestrator with a real browser, a cron scheduler, and a web dashboard",
5
5
  "type": "module",
6
6
  "bin": {