一键导入
ship
Commit current local changes, open a PR, and merge it using the GitHub CLI. Use for phrases like "ship this", "commit + PR", "merge it", or "/ship".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Commit current local changes, open a PR, and merge it using the GitHub CLI. Use for phrases like "ship this", "commit + PR", "merge it", or "/ship".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | ship |
| description | Commit current local changes, open a PR, and merge it using the GitHub CLI. Use for phrases like "ship this", "commit + PR", "merge it", or "/ship". |
| version | 1.0.0 |
| user-invocable | true |
| tags | ["git","github","release"] |
Use this skill when you want Codex to take a dirty working tree and turn it into a merged PR safely.
gh is installed and authenticated (gh auth status).Identify the repo(s) to ship.
Sanity checks (per repo).
git status --porcelain=v1git diff --stat, then spot-check risky files.npm run typecheck or npm run type-checkCreate a branch.
git switch -c codex/ship-<short-topic>-<yyyymmdd>Stage changes deliberately.
git add -p when diffs are risky or wide.Commit with a scoped message.
feat(blocker3): diagnostics + billing scaffolds limitsPush and open a PR.
git push -u origin HEADgh pr create --fill --base mainMerge.
gh pr merge --squash --delete-branchPost-merge cleanup.
git switch maingit pull --ff-onlyAt the end, report:
OrgX design execution contract for OpenClaw. Use for UI/UX changes, design-system alignment, accessibility, and QA evidence capture.
OrgX engineering execution contract for OpenClaw. Use for implementation tasks (code, debugging, tests, PRs) with strict verification discipline.
OrgX marketing execution contract for OpenClaw. Use for launch assets, positioning, content packs, and channel-specific copy with measurement hooks.
OrgX operations execution contract for OpenClaw. Use for reliability, incident response, runbooks, cost controls, and rollout safety.
OrgX orchestration execution contract for OpenClaw. Use for decomposing work into initiatives/workstreams/milestones/tasks and coordinating agents with explicit dependencies.
OrgX product execution contract for OpenClaw. Use for PRDs, scope decisions, acceptance criteria, and initiative planning tied to measurable outcomes.