skill
Fp3dView — Footprint Pad 3D Viewer
Public Made by Adomby adom
Interactive 3D viewer that displays KiCad .kicad_mod footprint pad geometry as extruded copper pads with outlines, labels, measurements, and a datasheet-style land pattern overlay in the Gallia Viewer
#!/bin/bash
set -e
PKG_DIR="$(cd "$(dirname "$0")" && pwd)"
SKILLS_DIR="$HOME/.claude/skills"
mkdir -p "$SKILLS_DIR/fp3d-viewer"
if [ -f "$PKG_DIR/SKILL.md" ]; then
cp "$PKG_DIR/SKILL.md" "$SKILLS_DIR/fp3d-viewer/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 fp3d-viewer"