app
Chip Fetcher Lite
Public Made by Adomby adom
Lightweight wiki-first component staging area. Add a component, check the Adom wiki for KiCad/Altium/Fusion files, upload what's missing, then file the symbol + footprint + 3D model straight into your
#!/bin/bash
set -e
PKG_DIR="$(cd "$(dirname "$0")" && pwd)"
SKILLS_DIR="$HOME/.claude/skills"
DEST="$SKILLS_DIR/chip-fetcher-lite"
mkdir -p "$DEST"
cp -r "$PKG_DIR/server.js" "$PKG_DIR/cli.js" "$PKG_DIR/public" "$PKG_DIR/SKILL.md" "$DEST/" 2>/dev/null || true
[ -f "$PKG_DIR/README.md" ] && cp "$PKG_DIR/README.md" "$DEST/README.md"
# expose the CLI
mkdir -p "$HOME/.local/bin"
cat > "$HOME/.local/bin/chip-fetcher-lite" <<EOF
#!/bin/bash
exec node "$DEST/cli.js" "\$@"
EOF
chmod +x "$HOME/.local/bin/chip-fetcher-lite"
echo "Installed chip-fetcher-lite"