skill
Hands-Free — voice narration
Public Made by Adomby adom
When the user can't look at the screen, narrate replies aloud via adom-tts — verified, queued, replayable.
#!/usr/bin/env bash
set -e
SKILL_DIR="${CLAUDE_SKILLS_DIR:-$HOME/.claude/skills}/hands-free"
mkdir -p "$SKILL_DIR"
cp "$(dirname "$0")/SKILL.md" "$SKILL_DIR/SKILL.md"
# remove the pre-rename skill dir so both names never coexist
rm -rf "${CLAUDE_SKILLS_DIR:-$HOME/.claude/skills}/im-driving"
echo "Installed hands-free skill to $SKILL_DIR"