skill
Adom Brand
Public Made by Adomby adom
The Adom brand identity — logo, color, type, motion, sound, Kel, icons, and the design system every Adom product is built on.
#!/usr/bin/env bash
# Installs the Adom brand skills (symlinked so edits propagate, reinstalls don't clobber).
set -e
SRC="$(cd "$(dirname "$0")" && pwd)"
link(){ mkdir -p "$HOME/.claude/skills/$1"; ln -sfn "$2" "$HOME/.claude/skills/$1/SKILL.md"; echo " linked $1"; }
link brand "$SRC/SKILL.md"
link brand-deck "$SRC/skills/brand-deck/SKILL.md"
echo "Adom brand skills installed."