#!/bin/bash
# Install the canonical "how the Adom Wiki works" skill into the agent skills dir.
set -e
PKG_DIR="$(cd "$(dirname "$0")" && pwd)"
DEST="$HOME/.claude/skills/adom-wiki"
mkdir -p "$DEST"
cp -f "$PKG_DIR/SKILL.md" "$DEST/SKILL.md"
echo "Installed wiki skill -> $DEST/SKILL.md"
