提交

提交图

348 次代码提交

作者 SHA1 备注 提交日期
Alexander Yue 8ee028d828 Update VOUCHED.td 2026-05-06 01:31:23 -07:00
Alexander Yue e8a11879a7 Merge pull request #309 from browser-use/fix/ipc-socket-umask
fix(ipc): set umask 0077 around AF_UNIX bind to avoid chmod TOCTOU
2026-05-06 01:27:31 -07:00
Alezander9 8dc728598e fix(ipc): set umask 0077 around AF_UNIX bind to avoid chmod TOCTOU
Previously start_unix_server() would bind() and listen() with mode
derived from the process umask before os.chmod(0o600) ran, leaving a
brief window where the socket's mode reflected umask. Setting umask
0o077 around the bind makes the socket land at 0600 directly, removing
the window.

Refs #298
2026-05-05 23:54:47 -07:00
Alexander Yue 455fc04ccc Merge pull request #308 from browser-use/Alezander9-patch-1
Update VOUCHED.td
2026-05-05 23:40:00 -07:00
Alexander Yue a248e2115d Update VOUCHED.td 2026-05-05 23:39:42 -07:00
Alexander Yue 45182147b9 Merge pull request #263 from femto/add-chrome-canary-support
daemon: add Chrome Canary profile discovery
2026-05-05 23:36:52 -07:00
Saurav Panda 30d54b7216 Merge pull request #303 from song-swivel/song-swivel-patch-1
Undo #302
2026-05-05 12:07:28 -07:00
Song Du 1a1aa3175d Delete agent-workspace/domain-skills/mrm/analytics-reports.md
Remove
2026-05-05 14:37:08 -04:00
Saurav Panda 5b07dde532 Merge pull request #302 from song-swivel/domain-skill-freewheel-mrm
Add FreeWheel MRM analytics report skill
2026-05-05 11:33:13 -07:00
Saurav Panda 0c9597bfef Merge pull request #301 from ComBba/feat/domain-skills-browser-use-cloud
feat(domain-skills): add browser-use-cloud (REST + cleanup-zombies)
2026-05-05 10:38:23 -07:00
Saurav Panda 3de7fe07eb cleanup-zombies: also catch URLError so transient network failures don't abort the loop
A DNS/timeout/socket error during PATCH /browsers/{id} was bubbling out
of the loop, leaving remaining zombies running and still billing.
HTTPError is a subclass of URLError, so the existing clause stays first
and the URLError catch handles only the transport-level failures.
2026-05-05 10:35:26 -07:00
Saurav Panda 2b8a3a6348 Merge pull request #300 from ComBba/fix/run-respect-explicit-cdp-endpoint
fix(run): respect explicit CDP endpoint before cloud auto-bootstrap
2026-05-05 10:28:38 -07:00
Your Name 4b84df96c2 Add FreeWheel MRM analytics report skill 2026-05-05 12:22:28 -04:00
ComBba 84e7a2c0ae feat(domain-skills): add browser-use-cloud (REST + cleanup-zombies)
Adds an operator-facing skill for cloud.browser-use.com / api.browser-use.com,
covering the same REST surface that the harness's own admin.py already
uses (X-Browser-Use-API-Key header, /browsers, /profiles), plus a
companion script for the most common automation -- stopping zombie
sessions older than N minutes.

Live-tested on 2026-05-05 with a real BROWSER_USE_API_KEY:

  POST   /browsers              201 - shape verified incl. liveUrl on live.browser-use.com
  PATCH  /browsers/{id} stop    200 - returns final cost
  GET    /browsers              200 - paginated {items, totalItems, ...}
  GET    /profiles              200 - same envelope
  GET    /profiles/{id}         200 - cookieDomains=None on fresh profiles
  GET    /usage                 404 - no public endpoint, doc'd accordingly
  GET    /                      404 - no root metadata

The cleanup-zombies.py companion is the regression artefact; running it
in dry-run mode is the cheapest smoke test, and a full E2E loop
(spawn -> list -> stop -> re-list) was confirmed end-to-end during
authoring.

Notable wire gotchas surfaced and documented:

- Cost / proxy fields (proxyCost, browserCost, proxyUsedMb) are returned
  as JSON strings, not numbers; cast to float before arithmetic.
- liveUrl host is live.browser-use.com (different from cloud.browser-use.com),
  with the cdp WebSocket encoded as a ?wss= query parameter.
- cookieDomains can be null on a freshly-created profile despite
  list_cloud_profiles' docstring describing it as an array.
- GET /usage returns 404 -- per-session cost lives on each browser
  record; aggregate billing only on the dashboard.

Style follows the claude-ai/share-export (#267) pattern of
markdown-skill-with-companion-py, sized at 222 + 161 LOC. Discovery
under helpers.py:163's current logic would resolve cloud.browser-use.com
to "cloud/" rather than "browser-use-cloud/" -- the skill folder name
mirrors the convention used by claude-ai/, vercel/, and tasksquad-ai/
which are also not auto-discoverable today; PR #165 is the broader fix
for that.

Refs: PR #300 (run.py precedence fix in the same area), PR #267
(claude-ai companion-script pattern), PR #288 (vercel dashboard skill
header style).

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-05 22:45:53 +09:00
ComBba 8dc337ff03 fix(run): respect explicit CDP endpoint before cloud auto-bootstrap
install.md:58-59 documents BU_CDP_URL / BU_CDP_WS as overrides for local
Chrome discovery, but run.py:87-92's auto-bootstrap guard never checked
either env var. With BU_CDP_URL set plus BROWSER_USE_API_KEY and
BU_AUTOSPAWN (commonly set together for unrelated reasons -- profile sync,
headless CI fallback, parent agents managing their own session), no daemon,
and no local Chrome on 9222/9223, the guard fires and start_remote_daemon()
provisions a billed cloud browser. admin.py:471 then calls
ensure_daemon(env={"BU_CDP_WS": _cdp_ws_from_url(browser["cdpUrl"]), ...}),
overwriting the user's explicit endpoint with the cloud WebSocket. Net:
surprise cloud bill plus silent endpoint replacement.

Add _explicit_cdp_configured() next to _local_chrome_listening() and gate
the auto-bootstrap with `not _explicit_cdp_configured()`. Mirrors the
existing _is_local_chrome_mode helper at admin.py:159-161 that already
treats BU_CDP_WS as the "not local discovery" signal. #277's
fresh-headless-box behaviour (no explicit endpoint set) is preserved.

Tests: 8 new unit tests in tests/unit/test_run.py covering URL/WS variants,
both-set, empty-string, daemon-alive and local-Chrome short-circuit
robustness, and direct helper input/output. tests/unit/ goes from 66 to 74,
all green. Without this patch, exactly 5 of the new tests fail (the ones
targeting the guard + helper); the 3 short-circuit/empty edge cases pass
even unpatched because existing guards already cover those paths.

Refs #266, #277, #292.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-05 20:50:25 +09:00
Saurav Panda 0f300e83e3 Merge pull request #296 from browser-use/fix/switch-tab-enable-all-domains
fix(daemon): set_session must enable all four default domains, not just Page
2026-05-04 19:03:15 -07:00
Saurav Panda 2a9c64548e set_session: run disable+enables in parallel; background cosmetic title prefix
codex flagged that set_session was now performing up to four sequential
domain enables (5s timeout each) plus a 2s Network.disable, so a slow
or remote daemon could block the synchronous IPC reply for ~22s while
the helper's _send() socket has only a 5s read timeout. Old code only
awaited Page.enable (3s) on this path.

Three changes to keep the reply under the IPC deadline:

1. _enable_default_domains now awaits asyncio.gather over the four
   Domain.enable coroutines instead of looping sequentially. Per-call
   timeout reduced from 5s to 4s. Worst case is bounded by a single
   CDP round trip rather than four.

2. set_session schedules the old-session Network.disable in the same
   gather as the four enables on the new session — independent CDP
   sessions, no ordering required for correctness (the consumer-side
   filter in wait_for_network_idle is the actual correctness gate).

3. The 🟢 tab-marker title-prefix Runtime.evaluate is now fire-and-forget
   via asyncio.create_task (+ _silent). It's purely cosmetic; agents
   shouldn't wait on it.

Worst-case set_session reply time: max(2s disable, 4s parallel enables)
≈ 4s, comfortably under the 5s IPC timeout. Normal case on a remote
daemon drops from ~800ms (4 sequential round trips) to ~200ms (1 round
trip in parallel).

Two new tests in tests/unit/test_daemon.py use a fake CDP whose
send_raw blocks on an asyncio.Event, then assert the peak in-flight
call count:
- with a previous session: peak == 5 (1 disable + 4 enables)
- first attach: peak == 4 (4 enables, disable skipped)
Sequential await would peak at 1 on both. Full suite: 65 passed.
2026-05-04 18:48:36 -07:00
Saurav Panda 45b75e62c4 wait_for_network_idle: filter by session_id; set_session: disable old Network
codex flagged a P2 follow-on to the just-added Network.enable: my fix
reliably enables Network on every fresh session, but old sessions
never get Network disabled (helpers.switch_tab attaches without
detaching), and wait_for_network_idle reads from the daemon's global
drain_events stream without filtering by session_id. Net effect: an
agent that visited a polling/SSE tab and switched away would observe
that background tab's traffic in a later wait, either timing out or
waiting on the wrong tab's requests.

Two narrow fixes:

1. helpers.wait_for_network_idle now captures the active session at
   the start of the wait and skips events whose session_id doesn't
   match. That's the consumer-side root-cause fix.

2. daemon set_session now calls Network.disable on the previous
   session before enabling on the new one. Defense in depth — keeps
   the daemon's event buffer from filling with background-tab noise
   in the first place. Best-effort with its own 2s timeout; failure
   doesn't abort the rest of the handler.

Tests added:
- tests/unit/test_helpers.py: events from a background session are
  ignored; the active session can reach idle even when the
  background session is busy.
- tests/unit/test_daemon.py: set_session disables Network on the old
  session; first set_session call (no prior session) does not call
  Network.disable.

Full suite: 63 passed (60 -> 63).
2026-05-04 18:34:18 -07:00
Saurav Panda c789a9fb9c set_session: enable Page/DOM/Runtime/Network (parity with initial attach)
Prior to this change, the daemon's set_session meta-handler only called
Page.enable on the new CDP session. The initial-attach path enabled all
four of Page/DOM/Runtime/Network. set_session is what backs switch_tab()
and new_tab() in helpers.py, so any helper that depends on Network
events — most notably the wait_for_network_idle() that just landed in
PR #258 — silently stopped receiving events after a tab switch.

Refactored: extracted the domain-enable loop into a private
_enable_default_domains(session_id) helper used by both attach_first_page
and the set_session handler. Each domain is enabled with its own
timeout, and a single failure does not abort the others.

Also tightened the target_id fallback semantics: if a caller passes
target_id=None on set_session, the daemon keeps its existing target_id
rather than overwriting with None (preserves the existing 'or' fallback,
just covered by a test now).

Tests in new tests/unit/test_daemon.py drive Daemon.handle() directly
with a fake CDP client and assert:
- set_session enables all four default domains on the new session
  (the regression — would fail against the old single-Page.enable code)
- target_id is preserved when caller passes None
- _enable_default_domains attempts every domain even when one raises

Identified via codex review (P1). Full suite: 60 passed.
2026-05-04 18:26:08 -07:00
Saurav Panda 560ce7a6f5 Merge pull request #294 from browser-use/fix/restart-daemon-pid-reuse-safety
fix: verify daemon identity via IPC before signaling in restart_daemon
2026-05-04 18:21:07 -07:00
Saurav Panda 255c47714e _process_start_time: implement Windows path via GetProcessTimes
codex flagged that the SIGTERM gate could never pass on Windows because
_process_start_time() returned None there, while ipc.identify() also
returns None during the slow-shutdown window (the daemon's serve()
tears down the IPC endpoint before stop_remote() runs its 15s-timeout
PATCH to api.browser-use.com). Combined: a Windows user with a remote
daemon would lose force-kill, leaving an orphan that may keep a billed
cloud browser alive.

Implemented the Windows branch via ctypes:
  OpenProcess(PROCESS_QUERY_LIMITED_INFORMATION, pid)
  GetProcessTimes -> creation FILETIME (100-ns intervals since 1601)
  CloseHandle on the way out

The combined high/low DWORDs of the creation FILETIME serve as the
opaque fingerprint. PROCESS_QUERY_LIMITED_INFORMATION is sufficient
for GetProcessTimes (Vista+) and avoids needing PROCESS_QUERY_INFORMATION
which is more privilege-sensitive.

Also tightened the top guard from isinstance(pid, int) to
type(pid) is int — bool subclasses int in Python and was previously
slipping through (though the f-string formatting in the Linux branch
saved us by hitting /proc/True/stat which doesn't exist).

Test coverage: extended test_process_start_time_returns_stable_fingerprint_for_self
to also run on win32. Full suite: 75 passed locally on macOS.
2026-05-04 18:18:28 -07:00
Saurav Panda a3aeb4e21e restore force-kill via process-start-time fingerprint + cap PID upper bound
Two more codex findings on ad39a95, both real:

1. _ipc.identify() accepted any positive int as pid, including values
   too large for C pid_t (typically signed 32-bit). os.kill(huge_pid, 0)
   then raises OverflowError, which propagates out of restart_daemon()
   before its cleanup runs. Bounded the accepted range to 0 < pid <
   2**31. Linux pid_max is also <2**22 in practice. Defense-in-depth:
   added OverflowError to the except lists wrapping the os.kill calls
   in restart_daemon, in case a different code path ever feeds it a
   too-large pid.

2. The daemon's serve() tears down the IPC socket BEFORE the daemon
   process actually exits — the daemon then runs slow cleanup work
   (notably stop_remote()'s 15s-timeout PATCH to api.browser-use.com
   to release a cloud browser). During that window identify() returns
   None even though the process is still our daemon, so the strict
   identify-only re-verification skipped SIGTERM and let the orphan
   keep running. The next bh invocation would then spawn a new daemon
   competing with the old one for the same Chrome.

   Fix: snapshot a process-start-time fingerprint at the top of
   restart_daemon, and accept it as a secondary identity signal in
   the SIGTERM gate. Two reads returning the same fingerprint means
   the PID still refers to the same process; a different fingerprint
   means PID reuse, in which case SIGTERM is skipped (preserving the
   protection from cubic's earlier finding). Implementation uses
   /proc/<pid>/stat field 22 on Linux and ps -o lstart= on macOS;
   on Windows / unsupported platforms the helper returns None and
   restart_daemon falls back to the strict identify-only check.

Tests in tests/unit/test_admin.py and tests/unit/test_ipc.py:
- restart_daemon SIGTERMs via start-time match when socket is gone
  (slow-shutdown recovery)
- restart_daemon skips SIGTERM when start-time has changed (PID
  reuse during the wait window)
- _process_start_time returns a stable fingerprint for the current
  process and None for invalid pids (None/0/negatives/non-int/dead)
- identify rejects oversized ints (covered via the bounded check)

Full suite: 75 passed.
2026-05-04 17:56:04 -07:00
Saurav Panda ad39a9500a harden ping/identify against non-positive pids and non-dict payloads
Two additional codex findings on 6d412c9:

1. _ipc.identify() accepted any int as pid, including 0 and negatives.
   On POSIX, os.kill(0, sig) signals every process in the calling
   process group, and os.kill(-1, sig) signals every process the
   caller can. A hostile or buggy daemon replying {pid: 0} or
   {pid: -1} would have turned restart_daemon() into a process-group
   kill. Restrict to pid > 0.

2. _ipc.ping() still did resp.get('pong') without a type check, so a
   list/scalar/null reply would raise AttributeError. The previous
   commit added that guard to identify() but left ping() bare. With
   the new daemon_alive fallback in restart_daemon() that now calls
   ping(), an unhandled raise here would abort restart before
   cleanup ran. Mirrored the identify() guards: isinstance(resp, dict)
   plus AttributeError in the except.

Tests in tests/unit/test_ipc.py now also cover:
- identify() rejects pid=0, pid=-1, pid=-42, pid=-99999
- ping() returns False for non-dict payloads (list/str/int/None)
- ping() requires pong is exactly True (rejects truthy non-True values)

Full suite: 71 passed.
2026-05-04 17:34:44 -07:00
Saurav Panda 6d412c9ee2 identify(): reject bool pid and non-dict ping payloads
Two related cubic/codex findings on _ipc.identify():

1. isinstance(pid, int) accepts bool (since bool subclasses int in
   Python), so a hostile or buggy daemon replying {pid: True} would
   yield PID 1 and os.kill(1, SIGTERM) would target init on POSIX.
   Switched to type(pid) is int — strict same-type check, no subclass
   surprises.

2. request() returns whatever JSON the daemon sent, which can be a
   list, scalar, or None for a stale/hostile endpoint. resp.get(...)
   would then raise AttributeError, propagating out of identify() and
   crashing restart_daemon() before its cleanup runs. Added an
   isinstance(resp, dict) guard and AttributeError to the except.

Tests in new tests/unit/test_ipc.py cover both rejections plus the
happy path, the missing-pid path (pre-upgrade daemon), pong=False,
and several non-dict shapes (list, str, int, None). Full suite: 67
passed.
2026-05-04 17:14:18 -07:00
Saurav Panda d2ab4709d5 address cubic feedback: backward-compat ping fallback + re-verify before SIGTERM
Two issues raised on the initial commit:

1. Pre-upgrade daemons that don't include 'pid' in their ping reply made
   identify() return None, which short-circuited the entire shutdown
   path. The function would still delete the socket and pid file,
   orphaning the still-running daemon. Fix: keep daemon_pid (verified
   PID, used for signaling) separate from daemon_alive (any pong reply
   counts, falls back to ipc.ping for the alive check). Shutdown IPC
   is now sent whenever daemon_alive is true, regardless of whether
   we got a verifiable PID; SIGTERM still requires a verifiable PID.

2. A single identify() at the top didn't prevent PID reuse during
   the 15-second wait loop. If the daemon exited and the kernel
   reused its PID before the loop timed out, SIGTERM would land on
   the new owner. Fix: re-call identify() right before SIGTERM and
   only signal if it still returns the same PID we've been waiting
   on — any other state (None, different PID) means PID reuse is
   possible and we skip the kill.

Two new tests in tests/unit/test_admin.py lock in both:
- test_restart_daemon_sends_shutdown_to_pre_upgrade_daemon_without_pid_in_ping
- test_restart_daemon_skips_sigterm_if_pid_was_reused_during_wait

Existing tests updated to also stub ipc.ping. Full suite: 61 passed.
2026-05-04 17:05:03 -07:00
Saurav Panda b21da82cb6 fix: verify daemon identity via IPC before signaling in restart_daemon
The previous restart_daemon() read the daemon's PID from the
/tmp/<name>.pid file and could end up calling os.kill(pid, SIGTERM)
on whatever process now owned that PID — a real hazard whenever the
daemon had crashed without removing the file and the OS subsequently
reused the PID for an unrelated local process (browser, editor,
language server, ...). The 15-second polling loop made the issue
worse: any time os.kill(pid, 0) kept succeeding (because the new
owner stayed alive), the loop would fall through to SIGTERM.

Fix: ask the live daemon for its PID over the existing IPC ping
channel before signaling anything. The 'ping' meta-handler now
returns {pong: True, pid: os.getpid()}, and a new ipc.identify(name)
helper returns that PID or None if the daemon is unreachable.
restart_daemon() now signals only the PID returned by identify(),
never the contents of the pid file. If the daemon is unreachable we
just clean up the socket and pid file and return — we never escalate
to a kill-by-pid-file.

Adds two unit tests in tests/unit/test_admin.py:
- the unreachable-daemon path performs zero os.kill calls (the
  exact regression: previously the stale pid file would still get
  signaled);
- when identify() returns a different PID than the pid file, only
  the identify-supplied PID is signaled.

Identified via codex code review (P0). All 59 unit tests pass.
2026-05-04 16:45:09 -07:00
Saurav Panda 27aed40c6b Merge pull request #288 from teedonk/domain-skill/vercel
feat(domain-skills): add Vercel dashboard skill
2026-05-04 16:27:32 -07:00
Saurav Panda 93400b47db Merge pull request #292 from claytonlin1110/fix/bu-cdp-url-json-404-devtools-fallback
fix(daemon): fall back to DevToolsActivePort when BU_CDP_URL returns 404
2026-05-04 16:02:25 -07:00
Saurav Panda be9316630f _ws_from_devtools_active_port: bracket IPv6 hosts when building ws:// URL
urlparse(...).hostname strips the [] from IPv6 hosts, so building
ws://{host}:{port}{path} produced ws://::1:9333/... which is malformed.
Restore the brackets when the resolved host contains ':'.
2026-05-04 16:00:51 -07:00
Saurav Panda b99f64d0b1 Merge pull request #281 from xajik/domain-skills/tasksquad.ai
feat: add tasksquad.ai domain skills
2026-05-04 15:23:22 -07:00
Saurav Panda 16c3729506 tasksquad domain skill: rename dir, replace fictional helper, fix compose snippet
- Move from top-level domain-skills/tasksquad.ai/ to the canonical
  agent-workspace/domain-skills/tasksquad-ai/ location, switching to
  kebab-case to match sibling dirs (booking-com, dev-to, archive-org).
- Replace find_text_coords(...) with self-contained inline Python
  helpers (_coords_by_text, _coords_by_selector) that wrap querySelector
  + getBoundingClientRect. find_text_coords does not exist in the
  harness or agent_helpers — every call site was a NameError waiting to
  happen.
- Fix the compose-task snippet: drop the dead subject_input = js(...)
  line, focus the subject input via _coords_by_selector before typing,
  and add a placeholder click for the agent dropdown item.
- Fix the polling-interval contradiction: the inbox section now defers
  to the gotchas, and the gotchas list the Free (5s) / Pro (2s) cadence
  in one place.
2026-05-04 11:32:28 -07:00
Saurav Panda 4f4dba606f Merge pull request #282 from abhay-0055/twitter-skill
Add posting.md in the x.com domain skill
2026-05-04 10:56:11 -07:00
Saurav Panda 90d3992e0d x posting skill: rename dir, add null guards to selectors
- Move agent-workspace/domain-skills/x.com/ to .../x/ to match repo
  convention (siblings use bare platform names like 'tiktok' / 'youtube'
  or kebab-case like 'booking-com'; nothing else uses a literal dot in
  a dir name).
- Guard the compose-textarea and post-button querySelector lookups so
  the snippet raises a clear RuntimeError if the elements aren't there
  yet, instead of throwing a confusing JS TypeError on
  el.getBoundingClientRect().
2026-05-04 10:29:00 -07:00
Saurav Panda fbe98f2b33 Merge pull request #283 from stian-a-johansen/SJ/agentlist-domain-skill
Add AgentList domain skill
2026-05-04 10:26:22 -07:00
Clayton d89dda5319 fix(daemon): fall back to DevToolsActivePort when BU_CDP_URL returns 404 2026-05-04 08:44:07 -05:00
femto 4bb1c59277 daemon: add Chrome Canary profile discovery on macOS and Windows
Add Chrome Canary paths to PROFILES list so the daemon can discover
DevToolsActivePort from Canary installations:
- macOS: ~/Library/Application Support/Google/Chrome Canary
- Windows: ~/AppData/Local/Google/Chrome SxS/User Data

Stable profiles are listed before Canary to avoid stale Canary port
files blocking discovery (get_ws_url raises after 30s timeout).

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-05-04 11:43:00 +08:00
teedonk a43f9387ba fix(domain-skills/vercel): correct build log limit guidance 2026-05-04 01:10:30 +01:00
teedonk 05f4b187c6 fix(domain-skills/vercel): raise build log limit and document N lines guidance 2026-05-04 01:03:21 +01:00
teedonk fa79282b76 feat(domain-skills): add Vercel dashboard skill 2026-05-04 00:58:49 +01:00
teedonk f44d1a60a4 feat(domain-skills): add Vercel dashboard skill 2026-05-04 00:27:28 +01:00
Alexander Yue b158d58d56 Merge pull request #285 from browser-use/feat/animated-banner
Animate README banner with ink-bleed SVG reveal
2026-05-03 13:53:10 -07:00
Alexander Yue 2073097674 Merge pull request #284 from DanielKeith/fix/brave-windows-discovery-path
fix(daemon): add Brave Browser's Windows path to PROFILES discovery
2026-05-03 13:45:17 -07:00
Alezander9 b4afdfd974 Animate banner with ink-bleed SVG reveal 2026-05-03 13:42:33 -07:00
Daniel Keith 3b02d8103e fix(daemon): add Brave Browser's Windows path to PROFILES discovery
PROFILES already covers Brave on macOS (Library/Application Support/
BraveSoftware/Brave-Browser) and Linux Flatpak (.var/app/com.brave.Browser/...)
but is missing the standard Windows install path. As a result, "Way 1"
(chrome://inspect/#remote-debugging) discovery fails on Windows + Brave with
"DevToolsActivePort not found" even when remote debugging is enabled.

Add Path.home() / "AppData/Local/BraveSoftware/Brave-Browser/User Data" to
match the macOS/Linux Brave entries already present.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-03 12:33:55 -05:00
Stian Johansen 8c64430339 Add AgentList domain skill 2026-05-03 11:41:39 +01:00
abhay-0055 cbf2dc45db Add posting.md in the x.com domain skill 2026-05-03 11:49:02 +05:30
Igor Steblii 879ada7190 feat: add tasksquad.ai domain skills
Adds auth, task inbox, and agent management playbooks for tasksquad.ai —
field-tested against the live site and source code of the React SPA.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-03 11:43:47 +08:00
Alexander Yue 59a166f0d8 Merge pull request #280 from browser-use/docs/canonical-browser-connection
docs: standardize harness docs against canonical browser connection reference
2026-05-02 18:12:21 -07:00
Alezander9 a2443d1d51 docs: standardize harness docs against canonical browser connection reference
Cross-checked AGENTS.md, README.md, SKILL.md, install.md, and profile-sync.md for accuracy. Tightened the sync_local_profile docstring and the chrome://inspect stderr message to match. Cloud-bootstrap test updated to set BU_AUTOSPAWN. All unit tests pass.
2026-05-02 18:02:36 -07:00
Saurav Panda 980dc948b3 Merge pull request #157 from bilaldaqqah/skill/aa-checkout
domain-skills/aa: full checkout flow
2026-05-02 17:50:00 -07:00