skill
Adom Wiki Skill Pack
Public Unreviewedby John Lauer
How to use the Adom Wiki without breaking pages — the wiki is six tools in one (git, adompkg, releases, discussions, PRs, discovery), and three repo archetypes have emerged from real use: Page, Skillpack, and Family. Plus how to publish rich component pages (chips, molecules, boards). One install, 15 skills, plus a write-up of the design patterns for the people who build the wiki.
#!/usr/bin/env bash
# Install the Adom Wiki Skill Pack: the main skill plus every bundled sub-skill.
# The publish linter requires each skill be listed explicitly (not a glob), so
# every skill below is named. Keep this list in sync with skills/ and uninstall.sh.
set -e
DEST="$HOME/.claude/skills"
install_skill() { mkdir -p "$DEST/$1"; cp "$2" "$DEST/$1/SKILL.md"; }
# main pack skill (REQUIRED at repo root by the registry)
install_skill adom-wiki-skillpack SKILL.md
# bundled sub-skills (one skill file each)
install_skill wiki-anatomy skills/wiki-anatomy/SKILL.md
install_skill wiki-api skills/wiki-api/SKILL.md
install_skill wiki-publish-safely skills/wiki-publish-safely/SKILL.md
install_skill wiki-readme skills/wiki-readme/SKILL.md
install_skill wiki-readme-html skills/wiki-readme-html/SKILL.md
install_skill wiki-visibility skills/wiki-visibility/SKILL.md
install_skill wiki-repo-styles skills/wiki-repo-styles/SKILL.md
install_skill wiki-component skills/wiki-component/SKILL.md
install_skill wiki-family skills/wiki-family/SKILL.md
install_skill wiki-skillpack skills/wiki-skillpack/SKILL.md
install_skill wiki-hero skills/wiki-hero/SKILL.md
install_skill wiki-breadcrumbs skills/wiki-breadcrumbs/SKILL.md
install_skill wiki-forking skills/wiki-forking/SKILL.md
install_skill wiki-discovery skills/wiki-discovery/SKILL.md
install_skill wiki-scoring skills/wiki-scoring/SKILL.md
echo "OK: Installed the Adom Wiki Skill Pack plus 15 bundled skills to $DEST/."
echo "Hint: Ask Claude 'publish this to the wiki', 'what kind of wiki repo should this be', 'how do I make a readme', or 'why isn't my wiki page surfacing'."