一键导入
commit-and-push
Commit all staged/unstaged changes, update CHANGELOG.md with a versioned entry, and push to remote. Use instead of manual git commit/push workflow.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Commit all staged/unstaged changes, update CHANGELOG.md with a versioned entry, and push to remote. Use instead of manual git commit/push workflow.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Debug why a PR or issue is stuck by cross-referencing orchestrator logs with GitHub state. Use when asked to check progress on a PR/issue or investigate why work isn't completing.
Interactively configure a fresh Millwright install — gather config, guide GitHub App + Slack webhook creation, write config.yml, and verify everything with bin/doctor until green. Use when setting up Millwright on a new host.
| name | commit-and-push |
| description | Commit all staged/unstaged changes, update CHANGELOG.md with a versioned entry, and push to remote. Use instead of manual git commit/push workflow. |
Commit changes, update the changelog, and push to remote.
Run these in parallel:
git status to see all modified and untracked filesgit diff to see staged and unstaged changesgit diff --cached to see already-staged changesgit log --oneline -5 to see recent commit message styleReview all changes and draft a concise commit message summarizing what was done and why.
Read CHANGELOG.md from the repo root to find the current version.
Decide the version bump:
Default to minor unless the change is clearly major. If unsure, ask the user.
Increment the appropriate version component. When bumping major, reset minor to 0.
Add a new entry at the TOP of the changelog (below the # Changelog heading), using this format:
## vX.Y.0 — YYYY-MM-DD
- Description of the change(s) made. Be concise but specific — mention what was added/fixed/changed and why.
If multiple logical changes are being committed together, use multiple bullet points.
CHANGELOG.mdvX.Y.0: <short description>Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>