skill
adom-remote-control
Public Made by Adomby adom
Make a container's Claude Code sessions controllable from the Session Monitor — voice or text, per-session model, push notifications.
#!/usr/bin/env bash
# adom-wiki pkg install hook — install the /adom-remote-control guidance skill.
# The keeper runtime + `session-monitor` CLI live in the session-monitor-cli
# package (a dependency); this skill just guides you to use it.
set -uo pipefail
HERE="$(cd "$(dirname "$0")" && pwd)"
DEST="$HOME/.claude/skills"
mkdir -p "$DEST"
cp -r "$HERE/skills/adom-remote-control" "$DEST/"
echo "✓ /adom-remote-control installed → reload your Claude Code window."
echo " It guides you to the session-monitor CLI: session-monitor keeper start --token <YOUR_TOKEN>"
echo " (If the CLI isn't found: adom-wiki pkg install adom/session-monitor-cli)"