用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/m19803261706/cx-workflow --skill cx-summary命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | cx-summary |
| description | Codex 侧 CX 汇总闭环。汇总 feature 结果、更新共享状态,并保持 docs 元信息一致。 |
先阅读:
../cx-shared/core/workflow/README.md../cx-shared/core/workflow/protocols/summary.md../cx-shared/references/codex-skill-contract.md../cx-shared/references/templates/summary.md开发文档/CX工作流/功能/<标题>/总结.mdcc,Codex 只能给出建议,不要直接改共享完成态GitHub 仍然只是同步镜像,开发文档/CX工作流 与 .cx/core 才是真相如果当前在 feature worktree 中(非 inline 模式),summary 完成后提供整合选项。
Codex 没有 AskUserQuestion 工具,必须(MUST)用编号文字列表 + 等待用户回复:
所有任务已完成,如何处理这个 feature 分支?
1. Merge 回主分支(合并后清理 worktree)
2. Push + 创建 Pull Request
3. 保留分支(稍后处理)
4. 丢弃(需确认)
请回复编号:
选项 1 — Merge:
git checkout main && git pull && git merge {feature-branch}
# 验证测试通过后
bash ../cx-shared/scripts/cx-worktree.sh cleanup --feature {slug}
git branch -d {feature-branch}
选项 2 — PR:
git push -u origin {feature-branch}
gh pr create --title "{feature-title}" --body "..."
选项 3 — 保留: 不执行任何操作。
选项 4 — 丢弃: 用编号文字列表二次确认后:
bash ../cx-shared/scripts/cx-worktree.sh cleanup --feature {slug} --force
git branch -D {feature-branch}
如果 isolation_mode = "inline",跳过此步。
优先调用:
bash ../cx-shared/scripts/cx-workflow-summary.sh \
--feature <feature-slug> \
--runner codex \
--session-id <session-id>