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
window verbs: add z-order send-to-back (desktop_set_window_state state:bottom) — last PS call in pup
Ask
Add a z-order-bottom option to the window verbs, e.g. desktop_set_window_state {state:"bottom"} (or a desktop_send_window_to_back verb): SetWindowPos(hwnd, HWND_BOTTOM, 0,0,0,0, SWP_NOMOVE|SWP_NOSIZE|SWP_NOACTIVATE), background drive, no activation.
Why
pup (adom-desktop-puppeteer-bridge) parks its background windows on-screen at the BOTTOM of the z-order (behind the user's windows, taskbar-clickable, still rendering for screenshots). As of pup 1.8.55 everything else in that park is direct API (CDP Browser.setWindowBounds for geometry, AD desktop_find_window for the hwnd, desktop_bring_to_front for the user-click path) — the ONE remaining PowerShell call in the whole flow is this single SetWindowPos HWND_BOTTOM, because CDP has no z-order control and AD has no send-to-back verb.
desktop_set_window_state already has maximize|minimize|restore|show|hide; "bottom" completes the set. Bonus if it returns whether the window was foreground before the call (pup uses GetForegroundWindow==hwnd as the "user clicked it" signal).
When it ships
pup deletes its last PowerShell (osBottomUnlessForeground) and the bridge becomes 100% direct-API for window management.