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
Bundle the adom-wiki CLI with Adom Desktop so wiki commit/push can run on the user's PC (avoid the pull-to-container round trip)
Problem
When an AI assistant (running in the cloud/Docker container) version-controls a users local project on the Adom Wiki, the files live on the USERS PC but the adom-wiki CLI only exists in the container. So every commit is a round trip:
adom-desktop pull_fileeach changed file from the PC into the container,adom-wiki repo push <owner>/<slug> --files ... -m "..."from the container.
For a KiCad project that means copying the .kicad_pro/.kicad_sch (+ hierarchical sub-sheets) / .kicad_pcb / .step / .glb across on every single commit — slow, brittle (a missed sub-sheet = a broken commit), and it duplicates files that already sit on the PC. It also means the containers copy and the PCs copy can drift.
Request
Bundle the adom-wiki CLI with Adom Desktop (the AD installer already drops adom-desktop-cli.exe into %LOCALAPPDATA%\Adom Desktop\ and puts it on PATH — ship adom-wiki.exe the same way), and expose a verb so a cloud/relay AI can run wiki repo operations DIRECTLY on the PC where the files already are. Sketch:
adom-desktop wiki_push {repo, cwd, files[], message}→ runsadom-wiki repo pushlocally in the project dir on the PC, no pull needed.- Or a generic
adom-desktop wiki_exec {args[], cwd}passthrough to the bundledadom-wiki. - Auth: reuse the user
s existingadom-wiki` token/session on the PC (AD is already signed in to Adom Cloud), so the AI never handles credentials.
Benefit
commit my project becomes a single call that runs where the files live — no per-file pull_file, no missed sub-sheets, no container/PC drift. This is the #1 friction point in the "version-control my KiCad board on the wiki from a cloud AI" workflow today.
Environment
- adom-desktop 1.9.102; adom-wiki CLI 1.0.22
- Reproduced repeatedly 2026-07-09..10 committing a hierarchical KiCad project to a private wiki page