generate-commit-message
Generate a commit message for staged changes
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Generate a commit message for staged changes
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Explain how code, a feature, or system works
Generate PR title and description
Generate database diagram for a feature
Generate sequence diagram for a feature
Get a general understanding of the codebase (stack, key files, structure, etc) and/or specific feature
Update the changelog based on commits in the current git branch
| name | generate-commit-message |
| description | Generate a commit message for staged changes |
| disable-model-invocation | true |
Analyze staged changes and generate a single-line commit message.
Check for staged changes
git diff --cached to see what's stagedgit status and suggest what to stageCheck project conventions
git log --oneline -10 to see recent commit styleGenerate a single-line commit message
If the project uses Conventional Commits, use the format:
type(scope): description
Types: feat, fix, docs, style, refactor, test, chore
Print the commit message in a code block:
Add user authentication endpoint