skill
3D Component Creator
UnreviewedGenerate interactive 3D models of PCB components with IC body, laser-etched chip markings, and pad geometry. Preview in 3dView (the Gallia Viewer's built-in Babylon.js 3D viewer), iterate with the use
#!/bin/bash
set -e
PKG_DIR="$(cd "$(dirname "$0")" && pwd)"
SKILLS_DIR="$HOME/.claude/skills"
mkdir -p "$SKILLS_DIR/3d-component-creator"
if [ -f "$PKG_DIR/SKILL.md" ]; then
cp "$PKG_DIR/SKILL.md" "$SKILLS_DIR/3d-component-creator/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 3d-component-creator"