Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
1566bac
Initial commit with task details
konard Jun 24, 2026
ec8968f
feat: add personal browser targets
konard Jun 24, 2026
0c56a86
Revert "Initial commit with task details"
konard Jun 24, 2026
25fac54
Add browser share relay and Edge extension artifact
skulidropek Jun 24, 2026
3b4f970
Add zip artifact for Edge share extension
skulidropek Jun 24, 2026
79fe825
Connect Edge from control panel
skulidropek Jun 25, 2026
08cc457
Keep shared Edge relay sessions alive
skulidropek Jun 25, 2026
6883148
Add shared browser activity audit panel
skulidropek Jun 25, 2026
4abd3b2
Separate shared browser tabs by window profile
skulidropek Jun 25, 2026
2251cc4
Render shared tabs as window groups
skulidropek Jun 25, 2026
f1828b3
Make shared window groups collapsible
skulidropek Jun 25, 2026
2ddfdf0
Add browserctl CLI automation
skulidropek Jun 25, 2026
3b4b0dd
Use rbc project-first CLI syntax
skulidropek Jun 25, 2026
9bee3f0
Allow direct JavaScript eval in rbc
skulidropek Jun 25, 2026
626d36f
Add Playwright runner to rbc
skulidropek Jun 25, 2026
c4bcf13
Support Playwright subset for shared browsers
skulidropek Jun 25, 2026
79dde14
Resolve rbc targets from browser pool
skulidropek Jun 25, 2026
f8db525
chore: add edge share extension zip
skulidropek Jun 25, 2026
f65f60e
chore: update edge share extension zip
skulidropek Jun 25, 2026
0f75e00
feat: add shared browser action recorder overlay
skulidropek Jun 25, 2026
0d1be1b
feat: add recorder inspect and replay modes
skulidropek Jun 26, 2026
a096eb4
feat: add playwright crx edge share extension
skulidropek Jun 26, 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
165 changes: 165 additions & 0 deletions Cargo.lock

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

6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,16 @@ clap = { version = "=4.4.18", features = ["derive"] }
anyhow = "1.0"
log = "0.4"
env_logger = "0.11"
tungstenite = "0.24"
tungstenite = { version = "0.24", features = ["native-tls"] }

[[bin]]
name = "browser-connection"
path = "src/bin/browser-connection.rs"

[[bin]]
name = "browser-connection-relay"
path = "src/bin/browser-connection-relay.rs"

[dev-dependencies]
tempfile = "=3.10.1"
proptest = "=1.4.0"
Loading
Loading