From Look Tongji Notes
Deploys a built static site (from site/) to GitHub Pages via gh CLI, with pre-checks for authentication and build existence.
How this skill is triggered — by the user, by Claude, or both
Slash command
/look-tongji-notes:pageThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
将已构建的课程 wiki 静态站点部署到 GitHub Pages。
将已构建的课程 wiki 静态站点部署到 GitHub Pages。
/page or "deploy to pages" or "publish wiki"./wiki build and the site/ directory is ready.gh --version
如未安装,输出安装指引,引导用户访问 https://cli.github.com/ 安装。
gh auth status
如未认证,引导用户执行 gh auth login 完成 GitHub 认证。
检查 workspace 的 site/index.html 是否存在:
ls <WORKSPACE_ROOT>/site/index.html
如 site/ 不存在或为空,引导先运行 /wiki build 构建站点。
优先使用环境变量 GH_PAGES_REPO:
echo $GH_PAGES_REPO
如果未设置,从当前 git remote 推断:
git remote get-url origin
用户可在 .env 中设置 GH_PAGES_REPO=owner/repo 来指定目标仓库。
gh pages deploy <WORKSPACE_ROOT>/site/ --repo <TARGET_REPO> --branch gh-pages
要求 gh CLI 版本 >= 2.29.0。
部署完成后,GitHub Pages URL 格式为 https://<owner>.github.io/<repo>/。
gh auth loginsite/ 已通过 /wiki build 构建<SKILL_DIR> Points<SKILL_DIR> is the directory containing this SKILL.md. The /page command uses the gh CLI directly (no shared Python scripts needed). For other skills, shared scripts (look_tongji.py, timeline_tools.py, tongji_backend/) and references live two levels up in the repository root (<SKILL_DIR>/../../scripts/ and <SKILL_DIR>/../../references/).
npx claudepluginhub walkerkiller/look-tongji-notes --plugin look-tongji-notesDeploys static or interactive HTML/CSS/JS frontend content to GitHub Pages using gh CLI, with repo creation, Pages enabling, and update workflows for public demos, prototypes, docs.
Checks and configures GitHub Pages deployment for docs sites, detects generators like MkDocs/TypeDoc/Docusaurus/Sphinx/rustdoc, audits workflows, migrates to actions/deploy-pages.
Publishes Obsidian markdown wikis as searchable static sites using Quartz v4 to Cloudflare Pages with mandatory privacy confirmation and access controls.