skill
Publish a Hardware Component to the Adom Wiki
Public Made by Adomby adom
The one-stop-shop for publishing a hardware component (or molecule/board) to the Adom Wiki. The whole lifecycle: page anatomy, the clone→edit→preview→push loop and its hard rules, making a great hero image (Hero Component Studio — 16:10, overlay-safe, datasheet-backed), the animated 3D composite, the interactive 3D viewer, ct thumbnails, the datasheet-accuracy audit, and every wiki push/pull gotcha we've hit. Now includes the worked Path B (board) pipeline: STEP-to-GLB, refdes tagging, layer de-
#!/bin/sh
# adom-hardware-component-publish — install the skill (+ its runnable scripts) for this user.
set -e
# Adom convention: SYMLINK install targets back into the module dir, so edits propagate and
# reinstalls don't clobber.
DEST="$HOME/.claude/skills/adom-hardware-component-publish"
mkdir -p "$DEST"
ln -sfn "$PWD/SKILL.md" "$DEST/SKILL.md"
# the worked scripts the skill references (bake_board_glb, board maps, viewer template,
# preview harness, seek-verify example) — linked so §5c/§6 commands work as written
ln -sfn "$PWD/scripts" "$DEST/scripts"
echo "installed: adom-hardware-component-publish -> $DEST"
echo "entry point: SKILL.md (the publish lifecycle); scripts/ holds the runnable pieces"