ワンクリックで
git
Check local changes, generate commit message and commit local changes, push commits to remote repo.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Check local changes, generate commit message and commit local changes, push commits to remote repo.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | git |
| description | Check local changes, generate commit message and commit local changes, push commits to remote repo. |
You have permission to use git for committing and pushing to remote repositories.
Use this skill when explicitly asked to:
Before proceeding, ALWAYS:
git status to inspect the repository stategit branch --show-currentUse git add . to stage all changes, OR:
git add <specific-files> if only certain files should be committedgit diff --cached before committingGenerate commit messages following Conventional Commits format:
<type>(<scope>): <imperative-mood-summary>
Scan changed files and determine type using this PRIORITY ORDER:
auth,
api, cli)feat(auth): add OAuth2 login support
fix(api): return 404 for missing resources
refactor(parser): extract validation logic
docs(readme): update installation instructions
chore(deps): bump lodash to 4.17.21
git commit -m "<message>"After successful commit:
git pushgit push -u origin <branch-name>git pull --rebase if
applicable--no-verify)--force or --force-with-lease unless explicitly requested--no-verify unless explicitly requested