一键导入
deploy-docs
Validate the MkDocs documentation site and GitHub Pages deployment for the public repository
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Validate the MkDocs documentation site and GitHub Pages deployment for the public repository
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Fork Overlay:Task Bundle 持久化 + Failure FSM 集成。在 ce:work 基础上增加 state.md 读写和状态机转换。使用时机:执行 ce:work 时,如果任务有对应的 Task Bundle(docs/tasks/<id>/),加载此 skill 以启用持久化和状态追踪。
Fork Overlay:Codex-first 外部执行器策略。按任务特征路由到 Claude 或 Codex,Codex-first(非品牌路由)。使用时机:需要决定是否将当前任务派发给 Codex 时加载此 skill。
Fork Overlay:经验分层沉淀升级阶梯。检测是否值得将 solution 升级为 pattern 或 skill。使用时机:ce:compound 完成后手动调用,分析 docs/solutions/ 中的重复模式。(不会自动触发,需主动加载此 skill)
Fork Overlay:外部模型调用前置检查门控。调用 Codex/Gemini 之前运行五项检查,防止调用失败浪费时间。使用时机:任何调用外部模型(Codex [C]、Gemini [G])之前自动运行。
Fork Overlay:ce:work 意图分类门控。在执行前识别任务意图(实现/修复/重构/探索),设定对应的执行策略。使用时机:ce:work Phase 0(环境扫描)之后、Phase 1(Quick Start)之前。
Fork Overlay:Codex Patch Approval 咨询版。当 Codex 返回 patch 时,Claude 审批后才写入文件。使用时机:Codex 以 patch/diff 格式返回代码变更时,由 Claude 作为审批层。
| name | deploy-docs |
| description | Validate the MkDocs documentation site and GitHub Pages deployment for the public repository |
| disable-model-invocation | true |
Validate the public documentation site and GitHub Pages deployment for
Jerrylalala/compound-engineering.
Run these checks:
bun run release:validate
python -m mkdocs build --strict
If Python dependencies are missing, install them first:
pip install -r requirements-docs.txt
test -f .github/workflows/docs.yml
gh workflow view docs.yml --repo Jerrylalala/compound-engineering
The workflow should:
mkdocs build --strict.site/ directory.actions/deploy-pages.git status --porcelain
If mkdocs build created an untracked site/ directory, remove it before
committing unless the user explicitly asked to inspect the built artifact.
After merging to main, docs deploy automatically when files matched by
.github/workflows/docs.yml change. Manual deployment is also available:
部署文档站点.Run workflow.Check the deployed public URLs:
for url in \
https://jerrylalala.github.io/compound-engineering/ \
https://jerrylalala.github.io/compound-engineering/INSTALL/ \
https://jerrylalala.github.io/compound-engineering/SUPPORT-MATRIX/ \
https://jerrylalala.github.io/compound-engineering/PUBLISHING/ \
https://jerrylalala.github.io/compound-engineering/workflow.html \
https://jerrylalala.github.io/compound-engineering/pencil.html
do
curl -fsSL -o /dev/null "$url" && echo "ok $url"
done
Provide a summary:
## Deployment Readiness
✓ release metadata valid
✓ MkDocs strict build passed
✓ docs workflow exists
✓ published pages return HTTP 200
### Next Steps
- [ ] Commit any pending changes
- [ ] Push to main branch
- [ ] Verify the `部署文档站点` workflow passed
- [ ] Check deployment at https://jerrylalala.github.io/compound-engineering/