@owloops/browserbird 1.2.2 → 1.2.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 +15 -0
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -29,6 +29,21 @@ Talk to an AI agent in Slack threads. It can browse the web with a real Chromium
|
|
|
29
29
|
|
|
30
30
|
Built by [Owloops](https://github.com/Owloops), building browser automation tools since 2020.
|
|
31
31
|
|
|
32
|
+
## Use Cases
|
|
33
|
+
|
|
34
|
+
Set up a bird (scheduled task) and it runs on a cron, browses the web, and posts results to your Slack channel. The browser keeps logins and cookies across runs, so it works with sites that require authentication.
|
|
35
|
+
|
|
36
|
+
| Use Case | What the bird does |
|
|
37
|
+
| --- | --- |
|
|
38
|
+
| **Competitor monitoring** | Visits competitor pages on a schedule, screenshots pricing or feature changes, and flags differences in your channel. |
|
|
39
|
+
| **News and mention digest** | Browses Hacker News, Reddit, or Twitter for mentions of your product or keywords, and posts a morning summary. |
|
|
40
|
+
| **Status page watchdog** | Checks a status page every few minutes and alerts your incidents channel when something is degraded. |
|
|
41
|
+
| **Dashboard screenshots** | Logs into your analytics or billing dashboard, takes screenshots of key metrics, and posts them weekly. |
|
|
42
|
+
| **Job and listing tracker** | Browses job boards, real estate sites, or marketplaces for new listings matching your criteria. |
|
|
43
|
+
| **Review and form monitor** | Checks Google Reviews, App Store reviews, or form submissions and summarizes new entries in your support channel. |
|
|
44
|
+
|
|
45
|
+
These are starting points. Every bird has a full AI agent (Claude Code or opencode) 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
|
+
|
|
32
47
|
## Installation
|
|
33
48
|
|
|
34
49
|
On first run, open the web UI and complete the onboarding wizard. It walks through Slack tokens, agent config, and API keys.
|
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: ${"e70043fd3f928c23a5fd3728b655509809d9b0b5".substring(0, 7)}`);
|
|
126
|
+
buildInfo.push(`built: 2026-03-05T11:55:24+04:00`);
|
|
127
127
|
const buildString = buildInfo.length > 0 ? ` (${buildInfo.join(", ")})` : "";
|
|
128
128
|
const VERSION = `browserbird ${pkg.version}${buildString}`;
|
|
129
129
|
const BIRD = [
|