Skip to content
Open
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
6c4052e
feat(browser): migrate from puppeteer-core to patchright (undetected …
Jun 20, 2026
5c77b0b
fix(browser): guard closeOrphanTarget against BrowserServer, fix vari…
Jun 20, 2026
24dae92
fix(browser): multi-fallback Chromium provisioning, detect crashed Br…
Jun 20, 2026
bc0488a
fix(browser): lazy-load patchright, catch missing npx, reset DPR on r…
Jun 20, 2026
32c959c
fix(browser): disconnect attached browsers, explicit WebP encode for …
Jun 20, 2026
b37229e
fix(browser): preserve aspect ratio for WebP saves, parse quoted aria…
Jun 20, 2026
9e23d62
fix(browser): support Playwright engine= selectors in cmux, fix CDP e…
Jun 20, 2026
8830a65
fix(browser): sync prompt with Playwright API, fix cmux role= selecto…
Jun 20, 2026
be2d833
fix(browser): drain stdout pipe, fix aria/ role inference, restore cm…
Jun 20, 2026
82cc8b5
fix(browser): document actual tab.id/tab.waitFor return types accurately
Jun 20, 2026
e10b627
fix(browser): decode escaped aria names, return Locator from waitFor,…
Jun 20, 2026
86c4530
fix(browser): close orphaned pages on BrowserServer via CDP Target.cl…
Jun 20, 2026
580dbdc
fix(browser): clean up cmux — revert feature additions, keep type cha…
Jun 20, 2026
50e0c1a
fix(browser): viewport intersection filter for click candidates, CDP …
Jun 20, 2026
076ee55
feat(coding-agent): improved browser interaction, accessibility, and …
can1357 Jun 20, 2026
66c57c4
feat(browser): native pipe glue for patchright + Bun compatibility
Jun 21, 2026
e3d8239
fix(browser): macOS Chrome executable names, aria value brackets, cmu…
Jun 21, 2026
4bf3a91
fix(browser): always use launchServer, remove headlessDirect, add Chr…
Jun 21, 2026
98e200a
refactor(browser): trim verbose comments, always use launchServer, fi…
Jun 21, 2026
25ef983
fix(browser): aria/Name selectors match accessible name, fix Unix kil…
Jun 21, 2026
bd8aea1
fix(tui): Ctrl+Enter on Windows Terminal sends follow-up, not newline
Jun 21, 2026
1eaf5e1
fix(native): satisfy clippy for patchright pipe
Jun 21, 2026
cfa67ca
fix(browser): close unix patchright pipe fds
Jun 21, 2026
2046cb8
fix(browser): forward patchright pipe kill signals
Jun 21, 2026
c0c66ca
fix(browser): disconnect attached cdp handles
Jun 21, 2026
7210be5
fix(browser): filter aria selector candidates
Jun 21, 2026
f570b7a
fix(browser): parse explicit aria roles
Jun 21, 2026
27ef32c
fix(native): allow macos edge pipe launch
Jun 21, 2026
a155882
fix(browser): name cmux input buttons by value
Jun 21, 2026
4c0aad8
fix(browser): normalize aria selector names
Jun 21, 2026
b7d4bd6
fix(browser): restrict aria input value names
Jun 21, 2026
0826593
fix(browser): run patchright installer locally
Jun 21, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,4 @@ python/robomp/.env

# Local, machine-specific boot perf baseline (see packages/coding-agent/scripts/bench-guard.ts)
packages/coding-agent/bench/boot-baseline.json
packages/natives/native/.build/
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

72 changes: 14 additions & 58 deletions bun.lock

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions crates/pi-natives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,12 @@ xxhash-rust.workspace = true
libc.workspace = true

[target.'cfg(windows)'.dependencies]
windows-sys = { workspace = true, features = [
"Win32_Security",
"Win32_System_Pipes",
"Win32_System_Threading",
"Win32_UI_WindowsAndMessaging",
] }
winreg.workspace = true

[build-dependencies]
Expand Down
Loading