app
TPS562201 12V → 3.3V Buck Molecule
UnreviewedA 24x16 mm 4-pin power brick using TI's TPS562201 synchronous buck. 12 V in, 3.3 V out at 500 mA (3 A silicon — 6x thermal headroom). 45.3k/10k feedback divider hits exactly 3.30 V. Reference DC-DC ex
#!/bin/bash
set -e
PKG_DIR="$(cd "$(dirname "$0")" && pwd)"
SKILLS_DIR="$HOME/.claude/skills"
mkdir -p "$SKILLS_DIR/tps562201-buck"
if [ -f "$PKG_DIR/SKILL.md" ]; then
cp "$PKG_DIR/SKILL.md" "$SKILLS_DIR/tps562201-buck/SKILL.md"
fi
for skill_dir in "$PKG_DIR/skills"/*/; do
[ -d "$skill_dir" ] || continue
skill_name=$(basename "$skill_dir")
mkdir -p "$SKILLS_DIR/$skill_name"
cp -r "$skill_dir"* "$SKILLS_DIR/$skill_name/"
done
echo "Installed tps562201-buck"