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