app
Adom Bridge
Public Made by Adomby adom
Adom Bridge unleashes your AI onto your full PC: full power, full safety. The AI breaks out of the container it runs in and onto your real machine, managing and running your entire laptop as you: launch apps, move files, drive any window, control KiCad, Fusion 360 or your real signed-in browser. Works with any AI, cloud or local (Claude Desktop, Claude Code, Codex), no Hydrogen required. Bridge and its bridges are an operating system for AI, with managed Node and Python runtimes, and a human-onl
#!/usr/bin/env bash
# Removes the container-side CLI binary + Claude skill bundle. Does NOT touch
# the Windows/macOS GUI on the user's laptop — uninstall that via Add/Remove
# Programs or `adom-bridge-cli --uninstall` on the laptop itself.
set -euo pipefail
sudo -n rm -f /usr/local/bin/adom-bridge-cli 2>/dev/null || true
rm -f "$HOME/.local/bin/adom-bridge"
rm -rf "$HOME/.claude/skills/adom-bridge" \
"$HOME/.claude/skills/adom-bridge-pup" \
"$HOME/.claude/skills/adom-bridge-kicad" \
"$HOME/.claude/skills/adom-bridge-fusion" \
"$HOME/.claude/skills/adom-bridge-direct-api" \
"$HOME/.claude/skills/adom-bridge-installer" \
"$HOME/.claude/skills/adom-bridge-discovery"
echo "[adom-bridge] removed container-side CLI + skill bundle."
echo "[adom-bridge] the laptop GUI (if installed) is untouched — remove it from the laptop itself."