app
Adom Desktop - Puppeteer Bridge
Public Made by Adomby adom
The Adom Desktop Puppeteer (pup) bridge — drive a real headful browser on the user's desktop from the cloud: open/screenshot/eval/record. Cold-start drives the browser ALREADY on the machine (installed Chrome, else Microsoft Edge — every Windows PC ships with Edge) with a fresh isolated profile, so the common case needs NO download; Chrome for Testing is fetched only as a last resort. Two artifacts: the Releases zip is the bridge runtime (also bundled in Adom Desktop); the pkg installs the container-side Claude skills.
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
{
"manifest_version": 1,
"name": "puppeteer",
"displayName": "Puppeteer (Chrome for Testing + Native)",
"version": "1.9.69",
"description": "Drives a browser ALREADY on the machine \u2014 installed Chrome, else Microsoft Edge (every Windows PC ships with Edge) \u2014 launched with a FRESH isolated profile, so the common case has NO ~150 MB Chrome-for-Testing download and it never touches the user's real tabs/logins. Binds its local server to LOOPBACK (127.0.0.1) only, so no Windows Firewall 'allow Node through the firewall' prompt ever pops. Chrome for Testing is fetched only as a LAST RESORT if the machine has no Chromium browser at all. SPAWN-VERIFIED fallback: pup tries each detected browser (Chrome \u2192 Edge \u2192 CfT) and actually launches it, falling through to the next if one won't start (and handling browsers like Edge that relaunch onto another PID), so a corrupt/partial install never hard-fails an open. The browser that launches is cached as the default (persisted across restarts) so it isn't re-probed each time. On spawn the bridge SELF-WARMS: detects browsers + disk, and only if the box has no Chrome/Edge and no cached CfT does it background-fetch CfT so the first open is instant. browser_use pins a specific browser (chrome | edge | cft | auto); {browser:'chrome',install:true} downloads & installs REAL Google Chrome (user-scoped, no admin) on an Edge-only box. browser_readiness (READ-ONLY) reports which browser will be used + the full candidate list + the default + free disk. Every failure returns a specific errorCode + _hint (chrome_install_no_disk, chrome_download_network, chrome_install_permission, chrome_stable_not_detected, \u2026). Launches with FULL browser permissions by default for full debug (strictPermissions:true opts out). Headful automation: open/close windows+tabs, navigate, screenshot, eval JS, record. pup is a GENERIC, non-profile browser only \u2014 every session is a fresh isolated Chrome/Edge process, never the user's real signed-in browser; profile defaults to sessionId. To drive the user's REAL Chrome/Edge (their profile, cookies, SSO), use the Adom browser EXTENSION's nbrowser_* verbs \u2014 a separate bridge, not pup's job.",
"homepage": "https://wiki.adom.inc/adom/adom-desktop",
"author": "Adom Inc.",
"license": "MIT",
"spawn": {
"kind": "node",
"entrypoint": "server.js",
"port": 0,
"healthEndpoint": "/status",
"stopMethod": "kill",
"killImageName": "node.exe"
},
"verbPrefixes": [
"browser_",
"desktop_recorder_",
"desktop_record_"
],
"verbs": [
"browser_open_window",
"browser_open_tab",
"browser_close_tab",
"browser_close_window",
"browser_navigate",
"browser_back",
"browser_forward",
"browser_reload",
"browser_click",
"browser_type",
"browser_press_key",
"browser_screenshot",
"browser_evaluate",
"browser_fetch_url",
"browser_input_dispatch",
"browser_readiness",
"browser_prewarm",
"browser_use",
"browser_record_start",
"browser_record_stop",
"browser_record_status",
"browser_record_list",
"desktop_recorder_open",
"desktop_record_start",
"desktop_record_stop",
"browser_describe",
"browser_lower_os_window",
"browser_raise_os_window",
"browser_focus_window",
"browser_alert_window",
"browser_status",
"browser_list_windows",
"browser_switch_window",
"browser_list_tabs",
"browser_switch_tab",
"browser_screenshot_full_res",
"browser_errors",
"browser_wait",
"browser_rescan",
"browser_close",
"browser_eval",
"desktop_record_status",
"desktop_record_list",
"desktop_recorder_close",
"browser_scroll",
"browser_set_viewport",
"browser_screenshot_element",
"browser_render_html"
],
"statusVerb": "browser_readiness",
"updateManifestUrl": "https://wiki.adom.inc/api/v1/pages/adom-desktop-puppeteer-bridge/files/adom-bridge-puppeteer-manifest.json",
"dependencies": {
"node": ">=20",
"browser": "Chromium-family \u2014 installed Chrome or Edge (every Windows box ships Edge); if neither exists, Chrome for Testing is auto-fetched as a last resort. No hard Chrome requirement."
},
"runtime": {
"kind": "node",
"version": ">=20",
"preferred": "22",
"_note": "AD-managed shared-runtime declaration (see PROPOSAL-shared-runtimes.md). Bridges DECLARE their runtime; AD provisions a portable interpreter from its shared adom-runtimes cache and spawns by absolute path \u2014 no UAC, no PATH reliance. Additive: older AD ignores this and uses `dependencies` / bare `node` on PATH."
},
"category": "Browser Automation",
"tags": [
"puppeteer",
"chrome",
"headful",
"recording"
],
"docs": "https://wiki.adom.inc/adom/adom-desktop-puppeteer-bridge",
"platforms": {
"windows": {
"supported": true
},
"macos": {
"supported": false,
"reason": "macOS port pending \u2014 puppeteer-core is cross-platform but the bridge's spawn config uses Windows-only killImageName 'node.exe' and Chrome for Testing path resolution hasn't been tested."
},
"linux": {
"supported": false,
"reason": "Linux port pending \u2014 same killImageName + Chrome resolution issues as macOS."
}
},
"prewarm": {
"assets": [
"chrome-for-testing"
]
},
"timeouts": {
"default": 60,
"verbs": {
"prewarm": 240,
"use": 240,
"open_window": 150
},
"prefixes": [
{
"prefix": "record",
"seconds": 90
}
]
}
}