@owloops/browserbird 1.1.3 → 1.1.5
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 +12 -1
- package/dist/index.mjs +10 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -12,7 +12,18 @@ Self-hosted AI agent for Slack with a real browser, a scheduler, and a web dashb
|
|
|
12
12
|
|
|
13
13
|
</div>
|
|
14
14
|
|
|
15
|
-
<
|
|
15
|
+
<table>
|
|
16
|
+
<tr>
|
|
17
|
+
<td width="50%" align="center">
|
|
18
|
+
<h4>Overview</h4>
|
|
19
|
+
<video src="https://github.com/user-attachments/assets/ff9bfe81-dde8-4bd2-acf5-47b48f43be9b" autoplay loop muted playsinline style="width:100%; max-width:400px;">
|
|
20
|
+
</td>
|
|
21
|
+
<td width="50%" align="center">
|
|
22
|
+
<h4>Demo</h4>
|
|
23
|
+
<video src="https://github.com/user-attachments/assets/c71791c3-ba1c-4590-8931-f3adc2dcac2d" controls style="width:100%; max-width:400px;">
|
|
24
|
+
</td>
|
|
25
|
+
</tr>
|
|
26
|
+
</table>
|
|
16
27
|
|
|
17
28
|
Talk to an AI agent in Slack threads. It can browse the web with a real Chromium browser you can watch live through VNC, run scheduled tasks on a cron, and keep persistent sessions across conversations. BrowserBird is the orchestration layer; the agent CLI ([claude](https://docs.anthropic.com/en/docs/claude-code/overview), [opencode](https://github.com/anomalyco/opencode)) handles reasoning, memory, tools, and sub-agents.
|
|
18
29
|
|
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: ${"c9b5494d6e5a7f575a4e3a9f1634acb8586253f4".substring(0, 7)}`);
|
|
126
|
+
buildInfo.push(`built: 2026-03-03T17:24:02+04:00`);
|
|
127
127
|
const buildString = buildInfo.length > 0 ? ` (${buildInfo.join(", ")})` : "";
|
|
128
128
|
const VERSION = `browserbird ${pkg.version}${buildString}`;
|
|
129
129
|
const BIRD = [
|
|
@@ -981,6 +981,14 @@ function validateConfigPatch(body) {
|
|
|
981
981
|
}
|
|
982
982
|
function buildRoutes(getConfig, startedAt, getDeps, options) {
|
|
983
983
|
return [
|
|
984
|
+
{
|
|
985
|
+
method: "GET",
|
|
986
|
+
pattern: pathToRegex("/api/healthcheck"),
|
|
987
|
+
skipAuth: true,
|
|
988
|
+
handler(_req, res) {
|
|
989
|
+
json(res, { ok: true });
|
|
990
|
+
}
|
|
991
|
+
},
|
|
984
992
|
{
|
|
985
993
|
method: "GET",
|
|
986
994
|
pattern: pathToRegex("/api/auth/check"),
|