@owloops/browserbird 1.4.13 → 1.4.14
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 +1 -1
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -42,7 +42,7 @@ Set up a bird (scheduled task) and it runs on a cron, browses the web, and posts
|
|
|
42
42
|
| **Job and listing tracker** | Browses job boards, real estate sites, or marketplaces for new listings matching your criteria. |
|
|
43
43
|
| **Review and form monitor** | Checks Google Reviews, App Store reviews, or form submissions and summarizes new entries in your support channel. |
|
|
44
44
|
|
|
45
|
-
These are starting points. Every bird has a full AI agent
|
|
45
|
+
These are starting points. Every bird has a full AI agent behind it that can browse the web, run shell commands, write and analyze code, call APIs, use MCP servers, and work with any CLI tool installed in the environment.
|
|
46
46
|
|
|
47
47
|
## Installation
|
|
48
48
|
|
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: ${"b38241676b0cfb906f92f85c02adcfc544353f75".substring(0, 7)}`);
|
|
126
|
+
buildInfo.push(`built: 2026-03-12T16:47:28+04:00`);
|
|
127
127
|
const buildString = buildInfo.length > 0 ? ` (${buildInfo.join(", ")})` : "";
|
|
128
128
|
const VERSION = `browserbird ${pkg.version}${buildString}`;
|
|
129
129
|
const BIRD = [
|