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
Add clipboard verbs (desktop_clipboard_set / desktop_clipboard_get) - enables non-focus-stealing 'clipboard-assist'
Feature request from the native-browser bridge thread. AD has no clipboard verb today (no desktop_clipboard_* / desktop_set_clipboard / etc. - verified against the verb list). A pair of simple verbs would be broadly useful:
desktop_clipboard_set { text }-> put text on the user's clipboard.desktop_clipboard_get {}-> read the current clipboard text.
Why it matters
The cleanest, least-rude way to fill native dialogs the agent can't drive in the background is
"clipboard-assist": put the value on the clipboard and let the USER paste it. Concrete case: the
Load-unpacked folder picker during browser-extension install. Its Folder field has no UIA
ValuePattern (so desktop_ui_set can't fill it), and typing it with desktop_type/desktop_press_key
foregrounds the window (steals focus, and the user's keystrokes then leak into it). Clipboard-assist
sidesteps both: AD sets the path on the clipboard, captions "paste with Ctrl+V, then Select Folder," and
the user finishes the one keyboard step without us stealing focus.
Current workaround (works, but clunky)
shell_execute + PowerShell: Set-Clipboard -Value '<text>' / Get-Clipboard. Issues: nested-quote
escaping is fragile (JSON + cmd + PowerShell), echo <text>| clip appends a newline, and there's no
clean save/restore. A native verb removes all of that.
Nice-to-haves
- A polite
setthat optionally returns the prior contents (so the agent can restore it after). - Text only is fine for v1 (no image/file clipboard needed).
Repro/consumer: adom/adom-browser-extension install flow (the installing-the-extension skill's
clipboard-assist picker-fill).