提交

提交图

132 次代码提交

作者 SHA1 备注 提交日期
Luka Secilmis 1797d8d55c readme: name stealth, proxies, and captcha solving in free remote browsers 2026-04-21 12:31:13 +02:00
Saurav Panda d1d6b59951 Merge pull request #130 from robertguss/add-reddit-and-medium-hydration-skills
domain-skills: reddit + medium article hydration
2026-04-20 17:28:24 -07:00
Robert Guss a603b7e997 domain-skills/medium: article body via DOM (logged-in fallback) 2026-04-20 15:23:36 -04:00
Robert Guss 06fd196941 domain-skills: reddit — shreddit-* DOM extraction and JSON API 2026-04-20 15:23:31 -04:00
Saurav Panda 8aa28ee5ca Merge pull request #116 from johnmarktaylor91/docs/centilebrain-domain-skill
docs(skill): centilebrain — generate normative z-scores
2026-04-19 21:08:13 -07:00
Gregor Žunič 92f16a5109 docs: point onboarding fast-start at docs.browser-use.com (#118)
The Fast start snippet used https://browser-use.com purely as an
illustrative "hello world". Pointing it at docs.browser-use.com
gives agents a more useful landing page on their first run.

Refs #102

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-19 16:14:18 -07:00
JohnMark Taylor 1aff1e14de docs(skill): centilebrain -- generate normative z-scores
Captures the site shape for centilebrain.org 'Generate Estimates' flow:
- Six Shiny iframes (modality x sex) at centilebrain-app.shinyapps.io
- Selectors for email, file input, compute, download
- Wait markers and three non-obvious traps (iframe target_id staleness,
  MUI switch checkboxes, coordinate-vs-JS button click after scroll)
- End-to-end example using upload_file(..., target_id=...) with
  iframe_target()
- Output zip schema

Requires the iframe target_id support added to upload_file().
2026-04-19 17:21:05 -04:00
Saurav Panda 84935b3738 Merge pull request #103 from forrest-motz/docs/github-form-actions
domain-skills/github: repo actions (star, watch) via form.submit()
2026-04-19 10:40:49 -07:00
Saurav Panda f3bfd9425d Merge pull request #101 from harrisboatworks/feat/facebook-domain-skill
domain-skills: add facebook/ (groups + pages)
2026-04-19 10:39:41 -07:00
Saurav Panda 859e1645b1 Merge pull request #99 from trwpang/narrow/trello-boards-and-lists-589ffe
trello: boards-and-lists
2026-04-19 10:38:48 -07:00
Saurav Panda e109cecd49 Merge pull request #105 from SybrenGL/fix/linux-chromium-devtoolsactiveport
fix: detect Chromium profiles on Linux
2026-04-19 10:37:49 -07:00
Sybren Geel ca2ee56bf8 fix: detect Chromium profiles on Linux 2026-04-19 17:43:35 +02:00
Forrest Motz f6a4724186 domain-skills/github: repo actions (star, watch) via form.submit()
Synthetic .click() on the visible Star button does not persist the
star — there's a hidden 0x0 fallback button that querySelector finds
first, and the visible React button swallows synthetic events. Submit
the form directly; CSRF is already embedded.

Field-tested while completing the install.md verification step.
2026-04-19 13:24:32 +01:00
Jay Harris a66a92f3c4 feat(domain-skills): add facebook/ with groups and pages playbooks
Both skills share the post-article DOM surface (div[role="article"]
and the data-ad-*-preview message selectors), but differ in URL shape,
sort options, and rate-limit ceilings. Pages are public and tolerate a
higher rate; Groups gate content behind membership and are stricter.

Each file covers: URL patterns, DOM anchors with verification notes,
a collect-as-you-go scroll pattern (FB virtualizes the feed so
scroll-then-collect misses posts), the l.facebook.com/l.php redirector
decoder, a Firecrawl handoff example, rate-limit discipline, a
self-inspection JS block for detecting selector drift, and a full
end-to-end example that emits JSON on stdout for downstream tools.

The groups.md anchors were verified against a logged-in account on
2026-04-18. pages.md inherits the post-article anchors from groups.md
(shared React component) and adds Page-specific header/metadata
selectors; a gotchas log section invites confirmation on first live use.
2026-04-19 06:15:36 -04:00
trwpang b87d6436c2 trello: boards-and-lists (via narrow) 2026-04-19 10:43:29 +01:00
sergeclaesen 4ec625595a domain-skills: framer — web editor (#98)
Documents the Monaco + React-canvas seam that causes most 'automation
silently did nothing' failures in Framer:

- Double-click requires the full pointer+mouse event chain (detail:2 matters)
- Monaco paste must be clipboard + OS-level Cmd+A/Cmd+V, then wait before save
- Publish button only mounts when a page is selected in the Pages tab; it
  rejects synthetic clicks and must be driven by screen-coord input
- Framer autolayout preempts programmatic Header position/left/right writes,
  forcing nodes offscreen; delete-and-copy is the working workaround

Plus the list of canvas-level interactions that consistently reject
automation (drag-drop, variant switching, property binding, Page Settings)
so agents know to escalate to the human instead of retrying.

Stable data-testid selectors table for Pages/Layers/Assets tabs, and the
edge-cache + sitemap quirks on framer-hosted live domains.
2026-04-19 02:15:53 -07:00
Magnus Müller 1eb04006b3 admin: explain why stop_remote_daemon calls restart_daemon (#97)
restart_daemon's name is a long-standing misnomer — it only stops.
The 'restart' label came from the typical caller workflow of
restart_daemon() → next browser-harness invocation → ensure_daemon()
spawns a fresh one. The function itself never restarts anything.

A short comment in stop_remote_daemon now documents this, and
restart_daemon's own docstring is updated to lead with what it
actually does ('Best-effort daemon shutdown + socket/pid cleanup')
rather than implying a restart.

No behaviour change.
2026-04-19 00:36:09 -07:00
Magnus Müller 82a1f2f540 remote: stop_remote_daemon helper, skill updates from sub-agent testing (#96)
* remote: stop_remote_daemon helper, skill updates from sub-agent testing

Three fresh sub-agents ran typical-user prompts against the skill
("start a remote browser with my logged-in data" / "Stripe only, no
Google" / "refresh my existing profile"). All three completed
end-to-end — cookies made the round trip, filters scoped cleanly,
refresh was idempotent. But they hit a few doc/code seams worth
closing:

admin.py:
- Add stop_remote_daemon(name="remote"). Sub-agents kept reaching
  for restart_daemon() because there was no obvious way to end a
  remote session; the new alias pairs symmetrically with
  start_remote_daemon() and makes the intent explicit. Same
  underlying implementation — it's just naming for callers.

run.py:
- Pre-import stop_remote_daemon so it's usable from
  browser-harness <<'PY' ... PY without an extra import line.

interaction-skills/profile-sync.md:
- Drop the "close Chrome before syncing" trap at the top of the
  Traps section. Obsolete on profile-use v1.0.5+ — the tool copies
  the profile dir to a temp and syncs from the copy. Two sub-agents
  verified sync works with Chrome open on v1.0.5. Kept a small
  note at the bottom for anyone on older versions.
- Document the ♻️ / 📝 reuse-vs-create signal in sync_local_profile
  output, so agents can confirm cloud_profile_id was accepted
  without counting profiles.
- Clarify the API path convention for _browser_use and the raw
  examples: paths are relative to BU_API, not absolute
  /api/v3/... Sub-agents were copy-pasting the old doc form and
  getting 404s.
- Add a one-liner for looking up an existing cloud profile's UUID.
- Surface stop_remote_daemon in the Python API overview.

Housekeeping:
- Stopped 5 sub-agent-leftover remote browsers from today's testing
  burst (not committed; just an operations note).

* skill: UUID lookup pattern must handle 0 and >1 matches (cubic review)

cubic flagged the one-liner as unsafe: 'next(p["id"] for p in … if …)'
raises StopIteration on no match and silently picks the first duplicate
when names repeat. Profile names genuinely aren't unique — sub-3 in the
same testing round surfaced a duplicate on this account — so use a list
comprehension and require exactly one match before using the UUID.
2026-04-19 00:23:28 -07:00
sergeclaesen 93c630f5ae domain-skills: atlas — my.recruitwithatlas.com (#94)
Add routes, filter URL format, GraphQL bootstrap, and the 'credentials: include'
pattern for reusing the tab's NextAuth session cookie without JWE juggling.

Auth quirk documented: injecting only the JWE into a fresh Chrome profile
triggers a login loop; UI needs the full cookie set (persistent profile),
while backend GraphQL works with the JWE alone.
2026-04-18 23:45:55 -07:00
Magnus Müller b0d78177a6 docs: agent offers to star the repo as a demo, asks first (#95)
* docs: suggest starring the repo, don't auto-star it

The verification task at the end of install was for the agent to
directly star the harness repo if the user was logged in to GitHub.
That conflates "verify the harness is attached" with "make a social
action on behalf of the user" — the latter shouldn't happen
without explicit user intent.

Reword install.md step 8 and the README setup prompt + example task
so the agent navigates to the repo (still verifies attach + activates
the tab so the user can see it) and *suggests* starring if the user
likes the project, instead of clicking the star itself.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* docs: agent should ask permission, not redirect star action to user

Previous wording told the agent "suggest the user star it themselves;
don't click yourself." That dropped the agent's role in the demo
entirely. The intent is the opposite: the *agent* should offer to
star the repo for the user (as a live demo that the harness can
interact with the page), and only do it if the user agrees.

Also drop the "Example task: ..." tagline from README — point to
domain-skills/ for examples instead.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-18 23:06:56 -07:00
Magnus Müller 759f44ff13 remote: paginate list_cloud_profiles; expose profile-use v1.0.4 sync flags (#93)
Two fixes that fell out of testing PR #84 against a real account.

1) list_cloud_profiles was hitting /profiles?pageSize=200 and getting 422
   back — the API caps pageSize at 100. Anyone with more than 10 profiles
   already saw a silent truncation before this (the request returned 10
   items by default) and anyone bumping past 100 would hit the hard error.
   Now paginates with pageSize=100 until totalItems is reached. My account
   is at 18 and climbs every sync_local_profile() call, so this was going
   to bite shortly.

2) sync_local_profile only exposed profile_name + browser. profile-use
   v1.0.4 shipped three more flags that solve real pain:
     --cloud-profile-id <uuid>  → update an existing cloud profile
     --domain <d>               → only these domains (repeatable)
     --exclude-domain <d>       → drop these domains (repeatable)
   Wired up as cloud_profile_id / include_domains / exclude_domains kwargs.
   When cloud_profile_id is passed, profile-use prints "♻️ Using existing
   cloud profile" instead of "Profile created: <uuid>" — special-cased the
   regex path to just return the caller-supplied UUID.

Also drops the "Upstream limitations" section from profile-sync.md (both
limitations are fixed as of v1.0.4) and adds two worked examples:
  - refresh the same cloud profile (cloud_profile_id=)
  - push only Stripe cookies into it (include_domains=["stripe.com"])

Verified end-to-end:
  sync_local_profile("browser-use.com", include_domains=["stripe.com"])
  → "Domain filter: 43 → 1 cookies (include=[stripe.com])"
  → cloud profile cookieDomains == ["m.stripe.com"]
  → second call with cloud_profile_id=uuid printed "Using existing cloud
    profile" and returned the same UUID (idempotent).
2026-04-18 22:38:43 -07:00
Magnus Müller 96ccb7692b remote: Python API for remote browsers, profiles, and local-profile sync (#84)
* remote: Python API for remote browsers, profiles, and local-profile sync

No CLI, no new entrypoint. Every helper is a Python function callable from
inside a normal `browser-harness <<'PY'` block. run.py pre-imports them.

admin.py:
- start_remote_daemon(name, profileName=None, **create_kwargs)
  Now forwards every documented POST /browsers kwarg (profileId, profileName,
  proxyCountryCode, timeout, customProxy, browserScreenWidth/Height, ...).
  profileName is resolved client-side via list_cloud_profiles — no browser-use
  API change needed. Prints liveUrl and auto-opens it locally when a GUI is
  detected (macOS/Windows always; Linux needs $DISPLAY / $WAYLAND_DISPLAY);
  headless servers print only.
- list_cloud_profiles() — GET /api/v3/profiles + per-profile detail; returns
  [{id, name, cookieDomains, lastUsedAt, userId}]. Agents should report
  len(cookieDomains) not the full list — profiles can have 500 cookies across
  dozens of domains.
- list_local_profiles(), sync_local_profile(name) — shell out to `profile-use`.
  sync_local_profile returns the newly-created cloud UUID.

Profile-sync skill rewritten Python-first with the chat-driven flow (ask the
user which profile; summarize by domain count, never dump cookies) and calls
out the two upstream limitations (sync always creates a new cloud profile; no
per-domain filtering) that need a PR to browser-use/profile-use — they can't
be fixed in browser-harness because the Browser Use API has no cookie
upload/download endpoint.

SKILL.md remote-browsers section updated to match, leading with the parallel
sub-agent use case.

* remote: fix misleading 'no GUI' message when webbrowser.open raises

cubic flagged this on #84: if _has_local_gui() is True but webbrowser.open
raises (e.g. no default browser configured), the code fell through to the
final 'no local GUI — share the liveUrl' line, which is wrong on both counts.
Restructure so each branch produces exactly one accurate message.
2026-04-18 22:19:47 -07:00
Saurav Panda 4f1e3cd5f8 Merge pull request #92 from browser-use/pin-deps
pyproject: pin dependencies and commit uv.lock
2026-04-18 21:53:14 -07:00
Saurav Panda 8bb719b05b pyproject: pin direct dependencies to exact versions
pyproject.toml used >= ranges for browser-harness, cdp-use, and
websockets, so a resolver could pull newer minors/patches on any
fresh install. Move them to == at the currently-resolved versions so
bumps have to be explicit and show up in review.

uv.lock stays gitignored; transitives float by design.
2026-04-18 21:51:07 -07:00
Saurav Panda 1973fc78be Merge pull request #86 from browser-use/feat/domain-skills-batch18
Add domain skills: World Bank, REST Countries, NASA, Wayback Machine, arXiv bulk
2026-04-18 18:48:10 -07:00
Saurav Panda 01e5009d11 Merge pull request #73 from browser-use/feat/domain-skills-batch11
Add domain skills: PubMed, CrossRef, OpenAlex, FRED, MusicBrainz
2026-04-18 18:43:36 -07:00
sauravpanda 57ad39b709 Add batch 18 domain skills: World Bank, REST Countries, NASA, Wayback Machine, arXiv bulk 2026-04-18 18:38:30 -07:00
Magnus Müller bf0a36a61a skill: surface remote browser liveUrl and tell agents to share it (#83)
* skill: surface remote browser liveUrl and tell agents to share it

* skill: trim liveUrl callout to one short sentence
2026-04-18 18:32:21 -07:00
Magnus Müller 7b457139ba skill: make PATH invocation and new_tab-at-session-start unmissable (#77)
* skill: make PATH invocation and new_tab-at-session-start unmissable

Two footguns that agents keep hitting on their first call:

1. They prefix the harness with `cd /path/to/browser-harness && uv run …`
   even though `browser-harness` is installed on `$PATH` as a standalone
   entrypoint. `uv run` from the wrong cwd actively fails, and the `cd`
   bakes a brittle assumption about where the repo lives.
2. They `goto(url)` on the first call, which navigates the user's
   currently-active tab and destroys whatever they were doing.

Fast start now:
- uses `browser-harness <<'PY'` (no `uv run`) in the example
- uses `new_tab(url)` instead of `goto(url)`
- adds an explicit two-point callout explaining *why* each rule matters
- mirrors both rules in the "What actually works" bullet list so a
  scanning agent sees them even if they skip the intro
- drops the stray `uv run` from the remote-browser snippet

* skill: trim Fast start callout; add read-before-edit note

* skill: require reading full file before using the harness, not just editing
2026-04-18 18:07:40 -07:00
Magnus Müller 0cd3f3bd9e fix(helpers): new_tab(url) actually lands on url (#75)
Passing the destination URL to Target.createTarget races with
Target.attachToTarget: by the time the new session is attached and
_mark_tab() runs, the brand-new page is briefly on about:blank with
document.readyState == "complete". A subsequent wait_for_load() then
returns immediately and page_info() reads the about:blank state.

Always create the tab on about:blank, attach, then route real URLs
through the existing goto(). Same contract as goto(url) — the caller
still calls wait_for_load() — so this is consistent with the rest of
the helpers and adds no new event-handling code.

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-18 17:49:10 -07:00
Magnus Müller dcd802cdb1 install: error-driven decision tree, drop unconditional chrome://inspect (#74)
* install: error-driven decision tree, drop unconditional chrome://inspect

The previous bootstrap implied that every attach failure (and any
not-running-Chrome case) needed a chrome://inspect navigation. In
practice the remote-debugging checkbox is per-profile sticky in Chrome,
so for any profile that has ever had it toggled on, just launching
Chrome and polling is enough — chrome://inspect is only needed the
first time per profile, when DevToolsActivePort is genuinely missing.

Restructure step 3 of install.md as an explicit error-keyed decision
tree (no Chrome process / DevToolsActivePort missing / port not live
yet / stale websocket) and add a matching gotcha to SKILL.md. Also fix
a stale `uv run bh` snippet in SKILL.md — the entrypoint is
`browser-harness`.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* Update install.md

Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>

* Update install.md

Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>

---------

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
2026-04-18 17:44:48 -07:00
sauravpanda f7d045caaf Add browser-harness validated domain skills for batch 11
PubMed/NCBI (ESearch→ESummary/EFetch pipeline; count is string; ELink broken 2026; CollectiveName branch),
CrossRef (title/container-title always lists; abstract has JATS XML tags; type=proceedings-article not conference-paper),
OpenAlex (abstract_inverted_index reconstruction; cursor >10K pages; group_by not group-by; concepts deprecated use topics),
FRED (fredgraph.csv timeouts headlessly; API needs free key; BLS/WorldBank/AlphaVantage as keyless alternatives),
MusicBrainz (Mozilla/5.0 gets 403; recording length in ms; CAA front flag vs types array differ).
2026-04-18 17:37:35 -07:00
Saurav Panda 76a69b1e97 Merge pull request #71 from browser-use/readme-contributing-section
readme: add contributing section inviting domain-skill PRs
2026-04-18 16:57:00 -07:00
Saurav Panda dd17af004d readme: add contributing section inviting domain-skill PRs 2026-04-18 16:54:05 -07:00
Saurav Panda 99b3037fa8 Merge pull request #47 from browser-use/feat/domain-skills-batch3
Add domain skills: ArXiv, Craigslist, Stack Overflow, npm/PyPI, Zillow
2026-04-18 16:40:52 -07:00
Magnus Müller 4a7f7633f1 fix tab indicator: re-enable Page + mark on session switch (#70)
The merged tab indicator only marked on Page.loadEventFired,
but Page events weren't enabled for new sessions created by
switch_tab(). Added Page.enable + immediate mark in set_session
handler so the 🟢 appears on every tab switch and survives
goto() navigation.

6/6 tests pass: new_tab, switch_tab, goto, click link,
cmd+click, switch back.

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-18 16:17:15 -07:00
Saurav Panda 48773aa9f4 Merge pull request #49 from browser-use/feat/domain-skills-batch4
Add domain skills: Booking.com, Eventbrite, Etsy, eBay, CoinGecko
2026-04-18 16:12:32 -07:00
Magnus Müller d07b2c84e5 Add green dot indicator for agent-controlled tab (#69)
* try WS handshake once, not 12 times

Each retry created a new CDPClient which opened a new WebSocket
connection, triggering Chrome's "Allow debugging" dialog again.
12 retries = 12 stacked popups the user has to dismiss.

Now tries once. If it fails, tells the user to click Allow and
retry — no popup spam.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

* add tab title indicator for agent-controlled tab

Prepends 🟢 to the page title on switch_tab() so the user can
see which tab the agent controls. Unmarks the previous tab first
so only one tab is marked at a time.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-18 15:40:10 -07:00
Prabir Shrestha 4e562620be Add Microsoft Edge support (#63)
* Add Microsoft Edge support

Edge is Chromium, so the daemon's CDP bootstrap works unchanged once it
knows where Edge's DevToolsActivePort lives. This adds the macOS, Linux,
and Windows Edge profile paths to the discovery list, plus a one-line
note in install.md clarifying that `chrome://inspect/#remote-debugging`
and the rest of the setup flow apply to Edge too.

* Edge Beta/Dev/Canary, drop Edge from main README

Cover the non-stable Edge channels on macOS, Linux, and Windows so
users on insider builds don't fall through to 'DevToolsActivePort not
found'. Edge SxS (Side-by-Side) is Canary's install dir on Windows.

Keep README's Chrome-only pitch; Edge stays documented in install.md
where setup details belong.

* install.md: move Edge note to bottom, one line

Top-of-section carve-out distracts from the Chrome bootstrap steps.
A one-liner in the cold-start reminders is enough for users who need it.

---------

Co-authored-by: MagMueller <mamagnus00@gmail.com>
2026-04-18 15:37:43 -07:00
Gregor Žunič bfdd7d76b3 Create LICENSE (#68) 2026-04-18 15:25:45 -07:00
Magnus Müller 65015e57fa try WS handshake once, not 12 times (#67)
Each retry created a new CDPClient which opened a new WebSocket
connection, triggering Chrome's "Allow debugging" dialog again.
12 retries = 12 stacked popups the user has to dismiss.

Now tries once. If it fails, tells the user to click Allow and
retry — no popup spam.

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-18 15:20:46 -07:00
Magnus Müller 6a6081538a add 5s timeout on domain enable calls, add nuclear recovery gotcha (#66)
daemon.py: Page/DOM/Runtime/Network.enable calls now have a 5s
timeout. Previously they could hang indefinitely on heavy pages
(TikTok FYP), preventing the daemon from reaching its socket
listener.

SKILL.md: added one gotcha for when restart_daemon() itself hangs
(kill Chrome entirely and reconnect).

Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-18 15:06:33 -07:00
Magnus Müller 5d06079d7f page_info: surface pending native dialog (#65)
Agents rarely know to check for open alert/confirm/prompt/beforeunload
dialogs — they freeze the JS thread, so page_info()'s Runtime.evaluate
returns a stale or misleading viewport dict while the page is blocked.

Track the latest unhandled Page.javascriptDialogOpening in the daemon
(cleared on Page.javascriptDialogClosed) and, when one is open, return
{dialog: {type, message, ...}} from page_info() instead of the usual
viewport dict. The dialogs skill now points agents at this signal.
2026-04-18 14:58:18 -07:00
Magnus Müller 7b5357190e Update section title from 'Remote browsers' to 'Free remote browsers' (#64) 2026-04-18 14:50:00 -07:00
Saurav Panda 67228da9a8 Merge pull request #50 from browser-use/feat/domain-skills-batch5
Add domain skills: SEC EDGAR, Coursera, Goodreads, DuckDuckGo, TrustPilot
2026-04-18 13:35:13 -07:00
Saurav Panda 3acddb982f Merge pull request #55 from browser-use/feat/domain-skills-batch10
Add domain skills: Wellfound, G2, Capterra, TradingView, Macrotrends
2026-04-18 13:34:57 -07:00
Saurav Panda 5adbd27a34 Merge pull request #62 from browser-use/readme-free-remote-browser
readme: promote free remote browser tier
2026-04-18 12:00:08 -07:00
Saurav Panda e8454571c2 readme: promote free remote browser tier
Call out the free tier (3 concurrent browsers, no card) in the Remote
browsers section so users know they can try it without setup friction.
2026-04-18 11:59:15 -07:00
Magnus Müller f014990f84 SKILL.md: reframe post-task ritual as "Always contribute back" (#61)
* Reframe post-task ritual as the default "contribute back" procedure

Renames the section to "Always contribute back" and turns the guidance
into an imperative default. Adds concrete examples of what's worth a PR
(private APIs, framework quirks, stable selectors, URL patterns, waits,
traps), a schema for what a domain skill should capture (the durable
shape of the site, not the run narration), and an explicit do-not-write
list — most importantly banning raw pixel coordinates.

Narrows the scope to `domain-skills/` contributions only; no longer
nudges agents to update `interaction-skills/` or `helpers.py` as part
of this loop.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

* Replace "hesitate" with clearer cost framing

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-18 11:25:53 -07:00
Magnus Müller dd95b5c459 [codex] Clarify README code size section (#56)
* Clarify README code size section

* Rename README setup heading
2026-04-18 11:13:33 -07:00