with one click
commit
Creates well-structured git commits with conventional format
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Creates well-structured git commits with conventional format
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Standard pattern for Firebase Hosting preview deploys in GitHub Actions with branch-stable previews always on, commit previews gated by a PR checkbox, and sticky PR feedback (comment + runtime state block). Use when setting up or fixing preview workflows for frontend apps or static sites on Firebase Hosting.
Configure multi-project GCP workflows with named gcloud configurations and direnv-based repo auto-switching. Use when developers frequently switch accounts/projects across repos.
Reusable workflow to sync session-context updates into docs/plans/IMPLEMENTATION.md, docs/specs/*.md, and docs/knowledge/*.md using a controlled source file with dry-run/apply checks.
Based on SOC occupation classification
| name | commit |
| description | Creates well-structured git commits with conventional format |
| allowed-tools | Bash, Read, Grep |
Check status
git status
git diff --staged
Review changes
Stage files
Write commit message
Format: type(scope): description
Types:
feat - New featurefix - Bug fixrefactor - Code restructuringdocs - Documentation onlytest - Adding/fixing testschore - Maintenance tasksCommit
# Feature
git commit -m "feat(auth): add password reset flow"
# Bug fix
git commit -m "fix(api): handle null response from external service"
# Refactor
git commit -m "refactor(utils): extract date formatting to shared helper"