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
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.