一键导入
git-check-commit-push
Check for untracked/modified changes in the workspace, draft a descriptive commit message, commit them, and push the commit.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Check for untracked/modified changes in the workspace, draft a descriptive commit message, commit them, and push the commit.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | git-check-commit-push |
| description | Check for untracked/modified changes in the workspace, draft a descriptive commit message, commit them, and push the commit. |
This skill automates checking for local modifications/untracked files, staging them, committing them with a descriptive message, and pushing to the remote repository.
Trigger this skill when the user asks to "check for changes and commit/push", "sync repo", "push my changes", or similar requests.
Check for changes:
git status in the repository's root directory.Stage files:
git add -A (or a specific path if requested) to stage all changes.Formulate a descriptive commit message:
git status or run git diff --cached --stat to see what changed.docs: update help files, feat: add helper function, fix: loader issue).Commit changes:
git commit -m "<message>" with the formulated message.Push to remote:
git push to push the commits to the upstream branch.