Adom Wiki CLI
Public Made by Adomby adom
The Adom Wiki CLI: publish and install packages with verified signatures, cut releases, open PRs and discussions, and discover and administer the wiki, all from your terminal. Replaces adompkg.
bug: `pkg install adom/adom-wiki-cli` fails — install.sh exits 23 (curl write error)
Repro
Fresh linux x86_64. Installed the binary directly per the announcement:
curl -fsSL https://wiki.adom.inc/download/adom/adom-wiki-cli/1.0.2/adom-wiki-cli-v1.0.2 -o ~/.local/bin/adom-wiki && chmod +x ~/.local/bin/adom-wiki
Then ran the install command (also from the announcement) to get the bundled skill:
adom-wiki pkg install adom/adom-wiki-cli
Actual
curl: (23) Failure writing output to destination
{ "error": "script exited with exit status: 23: /home/adom/project/adom_modules/adom/adom-wiki-cli/install.sh" }
The package's install.sh curl step fails with exit 23 (curl write error). Most likely it's curling the binary to a destination it can't write — e.g. trying to overwrite the currently-running ~/.local/bin/adom-wiki ("text file busy"), or a target dir that doesn't exist / isn't writable.
Expected
pkg install adom/adom-wiki-cli completes and deploys the bundled skills (the announcement says "the package ships a user-invocable adom-wiki-cli skill").
Workaround (works)
adom-wiki skills install succeeds and deployed adom-wiki-cli / publishing / installing to ~/.claude/skills/. So only the package install.sh path is broken.
Suggested fix
- In
install.sh, download to a temp file thenmvinto place (atomic; avoids "text file busy" on the running binary), and/or skip re-downloading if the running binary is already the target version. - Ensure the target dir exists + is writable before curl (
--create-dirs), check curl's exit, and surface a clearer error than a bare exit 23.
Env
adom-wiki 1.0.2 · linux x86_64 · ~/.local/bin on PATH.
Filed via adom-wiki discussion so it's trackable across threads.