What problem does it solve? Sites protected by Microsoft AAD, MFA, or corporate conditional access cannot be scraped or screenshotted from a fresh headless browser in WSL because the user's authenticated session lives in their Windows Edge profile. This Skill bridges WSL to the user's real, signed-in Edge browser over CDP so agents can open pages, list tabs, and capture content without re-authenticating. ## Core Features & Use Cases - Idempotent bootstrap: bootstrap.sh auto-detects the Windows username, Edge executable, and Windows Python, launches Edge with a dedicated CDP profile, starts a TCP forwarder, and prints the CDP URL. - Tab and capture helpers: open_url.py, list_tabs.py, and capture_page.py open or focus tabs, enumerate open tabs, and save HTML, text, and full-page screenshots with scrolling and accordion expansion. - Composable by other skills: Other skills can shell out to the helper scripts or import the _wbc.py Python helpers (connect, find_page, open_or_focus) via $AGENTS_SKILLS_DIR. - Use Case: An agent needs to screenshot an internal engineering docs page behind AAD. It runs bootstrap, asks the user to sign in once in the Edge window, then captures the page as HTML, text, and PNG. ## Quick Start Ask the agent to load the browser-control skill, run bootstrap.sh to get a CDP URL, then open and capture the target page in your signed-in Edge browser.