提交

提交图

352 次代码提交

作者 SHA1 备注 提交日期
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
Saurav Panda 1346f82cdd move aa skill under agent-workspace/domain-skills/
Match the canonical location used by all other domain-skills. The
top-level domain-skills/ tree is not picked up by the harness's skill
loader.
2026-05-02 17:47:34 -07:00
Alezander9 6ca4c49bcf remove old --setup flag now that install.md is the source of truth 2026-05-02 16:57:17 -07:00
Saurav Panda 6dc4e95d4e Merge pull request #168 from iskyiskyisky/domain-skills/amazon-cart-orders
domain-skills: amazon — cart.md, orders.md
2026-05-02 16:53:19 -07:00
Alezander9 2a1939da4f Full proofread of install.md, fix small formatting issues 2026-05-02 16:51:45 -07:00
Saurav Panda 17b30174d3 Merge pull request #158 from bilaldaqqah/skill/alaska-checkout
domain-skills/alaska: full checkout flow
2026-05-02 16:50:16 -07:00
Saurav Panda 2af85279af move alaska skill under agent-workspace/domain-skills/
Match the canonical location used by all other domain-skills. The
top-level domain-skills/ tree is not picked up by the harness's skill
loader.
2026-05-02 16:44:09 -07:00
Alezander9 007301b7a9 Update setup guide to be clear, precise and accurate 2026-05-02 16:37:52 -07:00
Saurav Panda ec5bdfa8c8 Merge pull request #179 from muqsitnawaz/skill/manus-perplexity
domain-skills: manus + perplexity — task workflows
2026-05-02 16:35:57 -07:00
Saurav Panda 57a951bfa4 move manus + perplexity skills under agent-workspace/domain-skills/
Match the canonical location used by all other domain-skills. The
top-level domain-skills/ tree is not picked up by the harness's skill
loader.
2026-05-02 16:34:04 -07:00
Saurav Panda 93d6c84c85 Merge pull request #233 from NandiniMurali/domain-skill/flipkart-shopping
feat: add field-tested Flipkart shopping domain skill
2026-05-02 16:17:12 -07:00
Alezander9 1c77fc2a0a remove information now redundant with new connection info block 2026-05-02 15:46:16 -07:00
Alezander9 ed86e2f4c7 add canonical browser connection notes to install.mc 2026-05-02 15:41:47 -07:00
Saurav Panda 4a2749081e move flipkart skill under agent-workspace/domain-skills/
Match the canonical location used by all other domain-skills. The
top-level domain-skills/ tree is not picked up by the harness's skill
loader.
2026-05-02 15:25:03 -07:00
Saurav Panda 02ca21fb07 Merge pull request #249 from teotoplak/add-bigbang-hr-skill
Add bigbang-hr domain skill (checkout flow)
2026-05-02 15:23:46 -07:00
Saurav Panda 681e7c645e seed window.dataLayer before patching push so the interceptor works pre-GTM
If an agent runs the interceptor snippet before GTM has initialized,
window.dataLayer is undefined and .push.bind throws. Seeding with [] is
safe — GTM picks up a pre-existing array on init.
2026-05-02 15:19:35 -07:00
Saurav Panda 707af6a968 Merge pull request #279 from progremir/add-dia-browser-discovery
feat: discover Dia browser profile on macOS
2026-05-02 15:11:50 -07:00
Saurav Panda 12f5973fb1 Merge pull request #258 from wdeveloper16/feat/spa-form-helpers
fix(helpers): add fill_input, wait_for_element, wait_for_network_idle
2026-05-02 15:11:26 -07:00
Emir Amanbekov edbb438930 feat: discover Dia browser profile on macOS
Dia is a Chromium-based browser by The Browser Company (same makers as
Arc). It ships with CDP enabled by default on its standard user-data-dir
at ~/Library/Application Support/Dia/User Data, so adding the path is
all that's needed for browser-harness to attach without any per-profile
opt-in.

Placed next to Arc since both are Browser Company products. Existing
browser priority (Chrome first) is preserved.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-03 01:34:30 +05:00
Saurav Panda 4da0684eb2 fill_input: dispatch select-all without char event so Cmd/Ctrl+A actually fires
press_key emits a Input.dispatchKeyEvent('char', text='a') after every
single-character keyDown. With Cmd/Ctrl held, that char event makes Chrome
treat the input as a printable letter "a" rather than firing the
select-all shortcut, so the field never gets cleared (Backspace would
then delete the literal "a" and leave the original value untouched).

Dispatch the rawKeyDown/keyUp pair directly with the modifier set and no
text/char event. Tightened the test to assert (a) the modifier is on the
'a' event with the platform-correct value and (b) no char event with
text='a' is emitted.
2026-05-02 12:54:43 -07:00
Saurav Panda 41c23013d1 wait_for_element(visible=True): prefer checkVisibility, fall back to computed style
The computed-style check measures the element itself, so an element nested
inside a display:none or visibility:hidden ancestor is reported as visible
(getComputedStyle returns the descendant's own non-none value, not the
inherited "is rendered" state). checkVisibility walks the ancestor chain
and is the right primitive on modern Chrome. Kept the per-element CSS
check as a fallback for older Chrome that lacks checkVisibility.
2026-05-02 12:26:23 -07:00
Saurav Panda 56eb057456 Merge pull request #259 from zhanning68-stack/domain-skills/cn-hotels
domain-skills: add ly.com, ctrip, wehotel (Chinese hotel sites)
2026-05-02 12:20:09 -07:00
Saurav Panda 318e3f01cc address cubic feedback on cn-hotels skills
- ly-com: read Vue ref via stable .value with _rawValue fallback
  rather than the brittle internal _rawValue path.
- wehotel: ancestor walk now identifies the hotel-name anchor by
  identity/innerText instead of an href-based negation against text
  (查看详情 lives on the link body, not in href), which previously
  let the loop stop on the detail anchor itself.
- ctrip: raise an explicit error when the destination input or 搜索
  button isn't found, instead of dereferencing None and crashing
  with a confusing TypeError.
2026-05-02 12:03:44 -07:00
Saurav Panda 059407785c Merge pull request #267 from jamster/domain-skills/claude-ai-share-export
domain-skills: add claude-ai/share-export
2026-05-02 12:01:25 -07:00
Saurav Panda 9ce945026d fix utf-8 encoding and document source_url in json schema
- write_text calls now pin encoding="utf-8" so non-ASCII transcripts
  don't depend on the locale default.
- share-export.md schema now lists source_url, matching what the script
  actually emits.
2026-05-02 11:40:04 -07:00
Saurav Panda 756fa93a5c Merge pull request #268 from vedantggwp/domain-skills/articulate-rise-code-blocks
domain-skills: articulate-rise — code blocks
2026-05-02 11:36:21 -07:00
Saurav Panda 2b88cf40cb move articulate-rise skill under agent-workspace/domain-skills/
Match the canonical location used by all other domain-skills.
2026-05-02 11:32:13 -07:00
MAX0MAX d7986fdb97 domain-skills: add bilibili navigation and structure skill (#270)
* domain-skills: add bilibili navigation and structure skill

Covers site architecture, URL patterns, content channels, video
interaction features (三连/投币/弹幕), and navigation quirks for
the Chinese video platform.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* domain-skills: fix PR review — correct history URL and ranking tab count

- Fix history URL from bilibili.com/history to https://www.bilibili.com/account/history
- Remove incorrect "also contains 稍后再看 tab" note (watch later is a separate SPA)
- Fix ranking category tab count from 23 to 24

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

---------

Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-02 11:30:19 -07:00
MAX0MAX de55c38e90 domain-skills: add BOSS直聘 (zhipin.com) navigation, job search, and chat skills (#271)
* domain-skills: add BOSS直聘 (zhipin.com) navigation and job search skills

Verified content only — navigation structure and job card extraction
confirmed via browser CDP.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* domain-skills: verify zhipin job search with API-first approach

Browser-verified: the /wapi/zpgeek/pc/recommend/job/list.json API
returns real salary numbers ("18-22K") unlike the DOM which uses
font-encoded PUA characters. Added full API reference for job list,
job detail, and filter conditions endpoints.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* domain-skills: verify zhipin chat with WebSocket + REST API

Browser-verified: conversation list loads via WebSocket (ws6.zhipin.com),
message history via /wapi/zpchat/geek/historyMsg API. Documented message
body types (text=1, job card=8, system=16), DOM selectors, pagination,
and bossId extraction.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* domain-skills: add zhipin chat filter tabs with clickable UI control

Browser-verified: 全部/未读/新招呼/更多/有交换/有面试/不感兴趣/AI筛选
filters with click_filter() and click_more_filter() functions.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* domain-skills: browser-verify job-search.md and fix API field names

Verified all functions against live zhipin.com. Fixed brandInfo→brandComInfo
with correct sub-fields (brandName/logo/industryName), corrected city codes
(101280100=Guangzhou not Shenzhen), documented page-based pagination as
unreliable, added encryptExpectId default params, and noted anti-bot timing.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* domain-skills: fix PR review — add API response validation, narrow bossId extraction, clarify city slug

- Guard all d.zpData accesses with d.code !== 0 checks across job-search.md and chat.md
- Filter bossId extraction to /wapi/zpchat/geek/historyMsg URLs only
- Correct "Chinese" to "pinyin" for city slug and add API code cross-reference

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

---------

Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-02 11:28:54 -07:00
Larsen Cundrič f10856b920 Merge pull request #277 from browser-use/fix/respect-bu-cdp-ws
fix(run): make cloud auto-bootstrap opt-in via BU_AUTOSPAWN
2026-05-02 11:28:39 -07:00
Larsen Cundric 4e8d42a720 fix(run): make cloud auto-bootstrap opt-in via BU_AUTOSPAWN
#266 made `browser-harness -c '...'` auto-provision a Browser Use cloud browser
whenever BROWSER_USE_API_KEY was set and no local Chrome / daemon was alive.
That gating signal is too broad — the API key is commonly set for unrelated
reasons (profile sync, cloud API calls, parent agents managing their own
session), so users with the key in env quietly got a *new* (billed) browser
spawned every time they ran a script.

Make auto-bootstrap opt-in via BU_AUTOSPAWN. Setting it alongside
BROWSER_USE_API_KEY restores #266's behaviour for fresh headless boxes;
anyone else is unaffected.

Refs #181, #183, #266.
2026-05-02 18:27:09 +00:00
Alexander Yue 43da6234da Merge pull request #276 from browser-use/feat/win-ipc-ping-token
harden Windows IPC: ping handshake, token auth, atomic port file
2026-05-01 21:23:20 -07:00
Alexander Yue adeccb4297 Merge pull request #275 from browser-use/docs/domain-skills-readme-section
docs: add concise Domain skills section to README
2026-05-01 21:11:24 -07:00
Alezander9 63b876cad3 harden Windows IPC: ping handshake, token auth, atomic port file
Three improvements to the cross-platform IPC layer, lifted from #104:

- meta:'ping' handshake replaces bare TCP connect in daemon_alive() and already_running(). A connect-only check on Windows can succeed against an unrelated process that grabbed our ephemeral port after a daemon crash; the ping/pong response confirms the listener is actually our daemon.

- Per-daemon random token (secrets.token_hex(32)) gates every request on Windows. AF_UNIX + chmod 600 is the boundary on POSIX, but TCP loopback has no chmod-equivalent; without a token any local process could connect and issue CDP commands.

- Atomic .port write (write .port.tmp, os.replace) so a concurrent reader never sees a half-written file.

Adds rohitdutt108 to VOUCHED.td.

Co-authored-by: Rohit Dutt <rohit.dutt@iyc.ishafoundation.org>
2026-05-01 20:57:46 -07:00
Alezander9 9b6bf51f81 docs: add concise Domain skills section to README 2026-05-01 20:53:59 -07:00
Alexander Yue 9e00ffff9a Merge pull request #274 from browser-use/feat/opt-in-domain-skills
Gate domain skills behind BH_DOMAIN_SKILLS env (default off)
2026-05-01 20:51:05 -07:00
Alezander9 84da63313d Soften skill-toggle wording; drop redundant =0 test 2026-05-01 20:44:14 -07:00
Alezander9 7e9a7db8c5 feat: gate domain skills behind BH_DOMAIN_SKILLS env (default off)
Domain skills auto-injected by goto_url() are community-contributed and quality varies; defaulting them off avoids polluting the average run while preserving the contribution loop. Set BH_DOMAIN_SKILLS=1 to opt in.
2026-05-01 20:34:01 -07:00
Alexander Yue ed0c2cdd7c Merge pull request #273 from browser-use/docs/add-vouched
docs: add VOUCHED.td (vouch list)
2026-05-01 11:50:23 -07:00
Alezander9 fcd9fbae12 add VOUCHED.td seeded with two recent contributors 2026-05-01 11:46:16 -07:00
Alexander Yue ff5eea44fc Merge pull request #272 from browser-use/docs/issue-templates
docs: add issue templates; route questions to Discussions
2026-05-01 11:42:45 -07:00
Alezander9 24fc314065 add issue templates and route questions to Discussions
bug-report.yml: 4 required fields plus a 4-box preflight (searched issues, ran --doctor, read install.md, this is a bug not a question/FR/cloud issue). feature-request.yml: 3 required fields plus a 2-box preflight. config.yml disables blank issues and links to Discussions Q&A and install.md.
2026-05-01 11:38:27 -07:00
Alexander Yue faac614bc1 Merge pull request #269 from browser-use/docs/add-agents-md
docs: add AGENTS.md
2026-05-01 11:36:06 -07:00
Alezander9 b124b56c42 list agent-workspace contents; clarify SKILL.md scope 2026-04-30 16:16:29 -07:00
Alezander9 f3a011b988 docs: add AGENTS.md with repo orientation for coding agents 2026-04-30 16:13:51 -07:00
Alexander Yue 013097aaa7 Merge pull request #265 from molesza/fix/chrome147-default-profile-cdp-fallback
fix(daemon): fall back to DevToolsActivePort ws path when /json/version 404s
2026-04-30 16:13:40 -07:00
Alezander9 fb2571ab8e inline 404 fallback; drop saw_http_404 flag
Same behavior matrix: HTTPError 404 with a ws_path returns the file's ws URL immediately; 404 without ws_path or any other error keeps polling until the 30s deadline. Removes the flag, the break, the post-loop check, and shrinks the explanatory comment.
2026-04-30 16:10:52 -07:00