app
Adom Video Post-Production
Public Made by Adomby adom
AI-driven studio for finishing demo videos: review every captured clip, flag and re-record the weak ones, speed up dead air, narrate, mux and auto-level, validate the final cut, and publish straight to the wiki, driven end to end by your AI.
#!/bin/bash
# adompkg install hook for adom-video-post. Places the prebuilt binary and
# deploys the embedded SKILL.md via the binary's own `install` subcommand.
set -e
HERE="$(cd "$(dirname "$0")" && pwd)"
mkdir -p "$HOME/.local/bin"
cp "$HERE/bin/adom-video-post" "$HOME/.local/bin/adom-video-post"
chmod +x "$HOME/.local/bin/adom-video-post"
# Back-compat `video-post` alias (the short name used in skills + demos).
ln -sf "$HOME/.local/bin/adom-video-post" "$HOME/.local/bin/video-post"
echo "OK: adom-video-post binary at ~/.local/bin/adom-video-post (alias: video-post)"
# Deploy the embedded SKILL.md (idempotent).
"$HOME/.local/bin/adom-video-post" install || true
echo "OK: adom-video-post installed. Run 'adom-video-post health' to verify."