بنقرة واحدة
commit
Creates well-structured git commits with conventional format
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Creates well-structured git commits with conventional format
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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.
| 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"