skill
aci board creator
Public UnreviewedBuild a real, manufacturable PCB the proper Adom way — every component goes through datasheet → symbol → footprint → 3D → chipfit before it lands on a schematic. Operationalizes PLAN Part 30 via aci c
#!/bin/bash
set -e
PKG_DIR="$(cd "$(dirname "$0")" && pwd)"
SKILLS_DIR="$HOME/.claude/skills"
mkdir -p "$SKILLS_DIR/aci-board-creator"
if [ -f "$PKG_DIR/SKILL.md" ]; then
cp "$PKG_DIR/SKILL.md" "$SKILLS_DIR/aci-board-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 aci-board-creator"