@owloops/browserbird 1.5.2 → 1.5.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.
- package/README.md +4 -4
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
- package/web/dist/assets/index-BqvBoiDc.js +8 -0
- package/web/dist/assets/index-C4T4JGQp.css +1 -0
- package/web/dist/index.html +2 -2
- package/web/dist/assets/index-CftnWmFY.js +0 -8
- package/web/dist/assets/index-DJk-M9yu.css +0 -1
package/README.md
CHANGED
|
@@ -322,10 +322,10 @@ Runs at `http://localhost:18800` by default.
|
|
|
322
322
|
|
|
323
323
|
| Page | Description |
|
|
324
324
|
| ------------ | ---------------------------------------------------------------------------------- |
|
|
325
|
-
| **
|
|
326
|
-
| **Sessions**
|
|
327
|
-
| **Birds**
|
|
328
|
-
| **
|
|
325
|
+
| **Mission Control** | System overview, failing birds, upcoming runs, active sessions |
|
|
326
|
+
| **Sessions** | Session list with message history, token usage, and conversation detail |
|
|
327
|
+
| **Birds** | Scheduled birds: create, edit, enable/disable, trigger, inline flight history |
|
|
328
|
+
| **Computer** | Live noVNC viewer (Docker only) |
|
|
329
329
|
| **Settings** | Config editor, agent management, secrets, system birds, job queue, and log viewer |
|
|
330
330
|
|
|
331
331
|
## Development
|
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: ${"
|
|
126
|
-
buildInfo.push(`built: 2026-03-
|
|
125
|
+
buildInfo.push(`commit: ${"4a82f9a566d00d4039e7d1f267abb31f0de265d2".substring(0, 7)}`);
|
|
126
|
+
buildInfo.push(`built: 2026-03-18T00:51:58+04:00`);
|
|
127
127
|
const buildString = buildInfo.length > 0 ? ` (${buildInfo.join(", ")})` : "";
|
|
128
128
|
const VERSION = `browserbird ${pkg.version}${buildString}`;
|
|
129
129
|
const BIRD = [
|