@owloops/browserbird 1.8.3 → 1.8.4

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 +3 -3
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -193,8 +193,8 @@ function unknownSubcommand(subcommand, command, validCommands) {
193
193
  /** @fileoverview ASCII banner displayed on daemon startup and in help text. */
194
194
  const pkg = createRequire(import.meta.url)("../package.json");
195
195
  const buildInfo = [];
196
- buildInfo.push(`commit: ${"2f0bea968791cd11c9e83c7461f7e8d466376792".substring(0, 7)}`);
197
- buildInfo.push(`built: 2026-03-22T17:18:51+04:00`);
196
+ buildInfo.push(`commit: ${"0c9ac36840820c423556f319162084f0279de38d".substring(0, 7)}`);
197
+ buildInfo.push(`built: 2026-03-22T17:39:52+04:00`);
198
198
  const buildString = buildInfo.length > 0 ? ` (${buildInfo.join(", ")})` : "";
199
199
  const VERSION = `browserbird ${pkg.version}${buildString}`;
200
200
  const BIRD = [
@@ -4493,7 +4493,7 @@ function createHandler(client, getConfig, signal, getTeamId, getChannelNameToId)
4493
4493
  let toolSuccesses = 0;
4494
4494
  function isStreamExpired(err) {
4495
4495
  const msg = err instanceof Error ? err.message : String(err);
4496
- return msg.includes("not_in_streaming_state") || msg.includes("streaming");
4496
+ return msg.includes("not_in_streaming_state") || msg.includes("streaming") || msg.includes("msg_too_long");
4497
4497
  }
4498
4498
  async function safeAppend(content) {
4499
4499
  if (streamDead) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@owloops/browserbird",
3
- "version": "1.8.3",
3
+ "version": "1.8.4",
4
4
  "description": "AI agent orchestrator with a real browser, a cron scheduler, and a web dashboard",
5
5
  "type": "module",
6
6
  "bin": {