app
Adom Desktop
Public Made by Adomby adom
Installs the adom-desktop CLI and its Claude skills INTO A CLOUD CONTAINER so an AI assistant there can understand and drive Adom Desktop over the relay. This is the container side, NOT the app itself. The Adom Desktop app is the signed Windows installer under Download below: run THAT on the PC you want the AI to control. Rule of thumb: pkg install here (in your Linux container), Download there (on your Windows PC). Once installed, the AI can drive file transfer, screenshots, notifications, KiCa
#!/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-desktop --uninstall` on the laptop itself.
set -euo pipefail
sudo -n rm -f /usr/local/bin/adom-desktop 2>/dev/null || true
rm -f "$HOME/.local/bin/adom-desktop"
rm -rf "$HOME/.claude/skills/adom-desktop" \
"$HOME/.claude/skills/adom-desktop-pup" \
"$HOME/.claude/skills/adom-desktop-kicad" \
"$HOME/.claude/skills/adom-desktop-fusion" \
"$HOME/.claude/skills/adom-desktop-direct-api" \
"$HOME/.claude/skills/adom-desktop-installer" \
"$HOME/.claude/skills/adom-desktop-discovery"
echo "[adom-desktop] removed container-side CLI + skill bundle."
echo "[adom-desktop] the laptop GUI (if installed) is untouched — remove it from the laptop itself."