一键导入
commit-push-pr
Commit current work, push the branch, and create a GitHub pull request with a concise title, body, and verification notes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Commit current work, push the branch, and create a GitHub pull request with a concise title, body, and verification notes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Full-lifecycle orchestration for comprehensive, no-compromise execution — roll-calls the right skills, fans out parallel/worktree agents, then closes the loop (verify, review, simplify, changelog, handoff, retro). Use when you want maximum effort, to go all-in, or to orchestrate a big task end-to-end.
Runs a short retrospective that PROPOSES edits to the user's Claude Code skills — capturing a newly-found gotcha, fixing a description that didn't auto-trigger, retiring a dead skill, or extracting a reusable pattern into a new skill. Improves the TOOLSET, not the session log. Use when the user signals satisfaction at the end of real work ("thanks", "thanks that worked", "that worked great", "nice", "perfect", "exactly what I needed"), or when they explicitly run /session-retro. Always proposes and waits for confirmation — never edits skills silently. In unattended runs (/orchestrate, overnight, or /session-retro --auto), writes proposals to ~/.claude/retro-proposals/ instead of blocking.
Generate a concise session handoff for resuming work later, including current state, decisions, open issues, and next steps.
Deep task decomposition into parallel workstreams with self-contained agent prompts. Use when you want to review the execution plan before committing to it.
Generate a handoff note for clean session transitions — preserves context across /clear or new sessions. Use when ending a session, when context is getting high, or when the user says "hand off", "wrap up the session", or "save state for next time".
Inspect and clean stale branches across multiple repositories using the dotfiles git-hygiene + gh-bootstrap toolchain. Use when the user asks about branch state, stale local branches, or "no ref was fetched" errors.
| name | commit-push-pr |
| description | Commit current work, push the branch, and create a GitHub pull request with a concise title, body, and verification notes. |
Use when the user asks to commit, push, open a PR, ship the current branch, or make a pull request.
git status --shortgit diff --stagedgit difffeat: ...fix: ...docs: ...refactor: ...test: ...chore: ...~/.claude/scripts/codex-review-gate.sh (the
same script cc uses; it runs codex exec --output-schema over a
gate-computed, injection-fenced diff and parses structured JSON findings).
Run it after the commit, before the push, so it reviews the committed
delta vs the base branch — exactly the PR contents — and ignores unrelated
WIP in the tree. This is the ADR-0003 stop-gate made concrete:
CODEX_GATE_ALLOW_INSTRUCTION_DIFF=1 after reading those changes). Fix in
a follow-up commit, re-run the gate, then continue. Do not push past it.CODEX_GATE_REQUIRED=1 to hard-require the review.gh pr create:
Fixes #123 when applicable