@owloops/browserbird 1.4.15 → 1.4.17
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 +6 -10
- package/dist/index.mjs +59 -294
- package/package.json +1 -1
- package/web/dist/assets/index-BJA2Sa8F.js +7 -0
- package/web/dist/index.html +1 -1
- package/web/dist/assets/index-16SesbKh.js +0 -7
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ Self-hosted AI agent orchestrator with a real browser, a cron scheduler, and a w
|
|
|
25
25
|
</tr>
|
|
26
26
|
</table>
|
|
27
27
|
|
|
28
|
-
Schedule AI agents to run on a cron, browse the web with a real Chromium browser you can watch live through VNC, and manage everything from a web dashboard or the CLI. Optionally connect Slack for conversational threads and slash commands. BrowserBird is the orchestration layer; the agent CLI ([
|
|
28
|
+
Schedule AI agents to run on a cron, browse the web with a real Chromium browser you can watch live through VNC, and manage everything from a web dashboard or the CLI. Optionally connect Slack for conversational threads and slash commands. BrowserBird is the orchestration layer; the agent CLI ([Claude Code](https://docs.anthropic.com/en/docs/claude-code/overview)) handles reasoning, memory, tools, and sub-agents.
|
|
29
29
|
|
|
30
30
|
Built by [Owloops](https://github.com/Owloops), building browser automation tools since 2020.
|
|
31
31
|
|
|
@@ -131,7 +131,6 @@ The top-level `timezone` field (IANA format, default `"UTC"`) is used for cron s
|
|
|
131
131
|
{
|
|
132
132
|
"id": "default",
|
|
133
133
|
"name": "BrowserBird",
|
|
134
|
-
"provider": "claude",
|
|
135
134
|
"model": "sonnet",
|
|
136
135
|
"fallbackModel": "haiku",
|
|
137
136
|
"maxTurns": 50,
|
|
@@ -144,9 +143,8 @@ The top-level `timezone` field (IANA format, default `"UTC"`) is used for cron s
|
|
|
144
143
|
Each agent is scoped to specific channels. Multiple agents are matched in order, first match wins.
|
|
145
144
|
|
|
146
145
|
- `id`, `name`: Required. Unique identifier and display name
|
|
147
|
-
- `
|
|
148
|
-
- `
|
|
149
|
-
- `fallbackModel`: Fallback when primary is unavailable (claude only)
|
|
146
|
+
- `model`: Short names (`sonnet`, `haiku`) or full model IDs
|
|
147
|
+
- `fallbackModel`: Fallback when primary model is unavailable
|
|
150
148
|
- `maxTurns`: Max conversation turns per session
|
|
151
149
|
- `systemPrompt`: Instructions prepended to every session
|
|
152
150
|
- `channels`: Channel names or IDs this agent handles, or `"*"` for all
|
|
@@ -249,17 +247,15 @@ Authentication is handled via the web UI. On first visit, you create an account.
|
|
|
249
247
|
| ------------------------- | ------------------------------------------------------------------------------------------------ |
|
|
250
248
|
| `SLACK_BOT_TOKEN` | Bot user OAuth token (optional, for Slack integration) |
|
|
251
249
|
| `SLACK_APP_TOKEN` | App-level token for Socket Mode (optional, for Slack integration) |
|
|
252
|
-
| `ANTHROPIC_API_KEY` | Anthropic API key (pay-per-token)
|
|
253
|
-
| `CLAUDE_CODE_OAUTH_TOKEN` | OAuth token
|
|
250
|
+
| `ANTHROPIC_API_KEY` | Anthropic API key (pay-per-token) |
|
|
251
|
+
| `CLAUDE_CODE_OAUTH_TOKEN` | OAuth token (uses your Claude Pro/Max subscription) |
|
|
254
252
|
| `BROWSER_MODE` | `persistent` (default) or `isolated`. Requires container restart |
|
|
255
253
|
| `BROWSERBIRD_CONFIG` | Path to `browserbird.json`. Overridden by `--config` flag |
|
|
256
254
|
| `BROWSERBIRD_DB` | Path to SQLite database file. Overridden by `--db` flag |
|
|
257
255
|
| `NO_COLOR` | Disable colored output |
|
|
258
256
|
|
|
259
|
-
The **opencode** provider inherits standard env vars per model provider: `OPENAI_API_KEY`, `GEMINI_API_KEY`, `OPENROUTER_API_KEY`, etc. See the full list at [models.dev](https://models.dev).
|
|
260
|
-
|
|
261
257
|
> [!NOTE]
|
|
262
|
-
> **Agent authentication:** `ANTHROPIC_API_KEY` (pay-per-token) is required for shared or commercial deployments per Anthropic's Consumer ToS. `CLAUDE_CODE_OAUTH_TOKEN` is fine for personal self-hosted use
|
|
258
|
+
> **Agent authentication:** `ANTHROPIC_API_KEY` (pay-per-token) is required for shared or commercial deployments per Anthropic's Consumer ToS. `CLAUDE_CODE_OAUTH_TOKEN` is fine for personal self-hosted use. When both are set, OAuth takes priority. This is also why BrowserBird uses the CLI rather than the [Agent SDK](https://docs.anthropic.com/en/docs/agent-sdk/overview); the SDK requires API key auth per Anthropic's [usage policy](https://docs.anthropic.com/en/docs/claude-code/legal-and-compliance).
|
|
263
259
|
|
|
264
260
|
## CLI
|
|
265
261
|
|