Starter Runtime Skeleton
def launch_baseline(profile_id):
cdp = start_profile(profile_id, automation=True, timeout=45)
browser = connect_over_cdp(cdp, timeout=45)
try:
run_smoke_task(browser)
save_evidence(profile_id, status="pass")
finally:
browser.close()
stop_profile(profile_id)
Keep baseline logic minimal. Complexity should be added only after repeat-pass evidence.