بنقرة واحدة
git-commit
Auto-generate and apply Conventional Commits when the agent makes commits
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Auto-generate and apply Conventional Commits when the agent makes commits
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
| name | git-commit |
| description | Auto-generate and apply Conventional Commits when the agent makes commits |
| metadata | {"workflow":"git","audience":"developers"} |
Generate Conventional Commit messages (feat, fix, docs, style, refactor, perf, test, chore, ci), infer a short scope when possible, assemble header/body/footer, stage the agent's changed files and run git commit automatically.
Use for routine commits made by the agent (code changes, fixes, docs, chores). Avoid for sensitive/security or policy-reviewed changes.
Header: type(scope?): short imperative subject (<=50 chars)
Examples:
feat(auth): allow token refreshfix(cache): apply TTL to keysAdd body and footers (BREAKING CHANGE: or Fixes: #123) when needed.
pkg/auth -> auth); omit if multiple areas changedgit status --porcelain.type, scope, subject, optional body.git add <files>).git commit -m "HEADER" -m "BODY" -m "FOOTER"..env, credential filenames, common secret patterns) and abort if found..gitignore and pre-commit hooks; do not force-skip hooks.