#!/usr/bin/env bash
# adompkg uninstall hook for adom-step2glb.
set -euo pipefail

SKILL_DIR="$HOME/.claude/skills/adom-step2glb"

if [ -d "$SKILL_DIR" ]; then
  rm -rf "$SKILL_DIR"
  echo "OK: removed adom-step2glb skill -> $SKILL_DIR"
else
  echo "OK: nothing to uninstall"
fi