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.
#!/usr/bin/env bash
# Remove the pup skill from the container. (Also cleans the maintainer sub-skills if an older
# pkg installed them, so an upgrade from the pre-1.8.21 layout leaves nothing behind.)
set -e
remove_from() {
local BASE="$1"
rm -rf "$BASE/adom-desktop-puppeteer-bridge" \
"$BASE/pup-windows-sessions-tabs" "$BASE/pup-screenshots-recording" "$BASE/pup-browsers-and-chrome" "$BASE/pup-adom-wiki" \
"$BASE/pup-bridge-dev" "$BASE/pup-bridge-publish"
echo " <- $BASE"
}
echo "Removing adom-desktop-puppeteer-bridge skills:"
remove_from "$HOME/.claude/skills"
[ -d "$HOME/.codex" ] && remove_from "$HOME/.codex/skills"
echo "Done."