#!/usr/bin/env bash
# Install the adom-basic-parts-summary skill — drops SKILL.md into the
# user's Claude Code skills directory so Claude auto-discovers it.
set -e
DEST="$HOME/.claude/skills/adom-basic-parts-summary"
mkdir -p "$DEST"
cp SKILL.md "$DEST/SKILL.md"
echo "OK: Installed adom-basic-parts-summary to $DEST/."
echo "Hint: Ask Claude 'what are the adom basic parts?' or 'where's the wiki page for 10kΩ 0402?'"
