tuanductran/hr-skills/.agents/skills/github-awesome-copilot-git-commit/SKILL.md
github-awesome-copilot-git-commit
Generate high-quality, atomic Conventional Commits by analyzing Git changes, recommending logical commit boundaries, validating commit messages, and assisting with PRs, changelogs, and releases.
- Source repository stars
- 43
- Declared platforms
- 0
- Static risk flags
- 0
- Last source update
- 2026-08-05
- Source checked
- 2026-08-05
Decision brief
What it does—and where it fits
Generate high-quality, atomic Conventional Commits by analyzing Git changes, recommending logical commit boundaries, validating commit messages, and assisting with PRs, changelogs, and releases.
Not for
- Tasks that require unconfirmed production actions or broad system permissions.
- Environments where the pinned source and install steps cannot be inspected.
Compatibility matrix
Platform support, with evidence labels
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
Installation
Inspect first. Install second.
The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.
npx skills add https://github.com/tuanductran/hr-skills --skill ".agents/skills/github-awesome-copilot-git-commit"Inspect the Agent Skill "github-awesome-copilot-git-commit" from https://github.com/tuanductran/hr-skills/blob/26fae0e8572f0e3e50d4b28fbe3abbff2e6a0814/.agents/skills/github-awesome-copilot-git-commit/SKILL.md at commit 26fae0e8572f0e3e50d4b28fbe3abbff2e6a0814. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.
Workflow
What the source asks the agent to do
- 01
Commit review
Review uncommitted Git changes before creating commits
Review uncommitted Git changes before creating commitsDetect unrelated changes mixed in the same diffRecommend splitting large changes into multiple atomic commits - 02
Interactive Git workflow
Review git diff before staging
Review git diff before stagingReview git diff --cached before committingSuggest files that should be committed together - 03
Git workflow
"Review my Git changes before I commit."
"Review my Git changes before I commit.""Suggest a clean staging strategy using git add -p.""Identify unrelated modifications." - 04
Supported tasks
Generate Conventional Commit messages from Git diffs
Generate Conventional Commit messages from Git diffsAnalyze the current working tree using git diffGenerate commit messages from staged changes using git diff --cached - 05
Commit generation
Generate Conventional Commit messages from Git diffs
Generate Conventional Commit messages from Git diffsAnalyze the current working tree using git diffGenerate commit messages from staged changes using git diff --cached
Permission review
Static risk signals and limitations
No configured static risk pattern was detected
This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.
Evidence record
Why each signal appears
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 88/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 43 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated or reviewed according to the visible evidence level |
Pinned source
Provenance and original SKILL.md
- Repository
- tuanductran/hr-skills
- Skill path
- .agents/skills/github-awesome-copilot-git-commit/SKILL.md
- Commit
- 26fae0e8572f0e3e50d4b28fbe3abbff2e6a0814
- License
- MIT
- Collected
- 2026-08-05
- Default branch
- main
View the original SKILL.md
GitHub Awesome Copilot Git Commit
Supported tasks
Commit generation
- Generate Conventional Commit messages from Git diffs
- Analyze the current working tree using
git diff - Generate commit messages from staged changes using
git diff --cached - Infer the best commit type from the actual intent of the change
- Recommend an appropriate scope when it improves clarity
- Write concise subjects in the imperative mood (≤72 characters)
- Generate optional commit bodies explaining what changed and why
- Generate footers for issue references and breaking changes
Commit review
- Review uncommitted Git changes before creating commits
- Detect unrelated changes mixed in the same diff
- Recommend splitting large changes into multiple atomic commits
- Explain why commits should be separated
- Generate one Conventional Commit for each logical change
- Ignore whitespace-only changes unless intentional
Interactive Git workflow
- Review
git diffbefore staging - Review
git diff --cachedbefore committing - Suggest files that should be committed together
- Recommend staging strategies using
git add -p - Help create clean Git history with atomic commits
Validation
- Validate commit messages against Conventional Commits 1.0.0
- Detect incorrect types, scopes, formatting, or grammar
- Suggest improved commit messages
- Validate subject length
- Detect non-imperative subjects
- Detect unnecessary scopes
Pull requests
- Generate PR titles from commits
- Generate concise PR descriptions
- Summarize major changes
- Highlight breaking changes
- List testing notes
- Draft reviewer checklists
Releases
- Generate changelog entries
- Group commits into release categories
- Draft release notes
- Detect breaking changes
- Generate migration notes
- Summarize notable improvements
Key prompts
Generate commit from current changes
- "Analyze the current Git working tree by running
git diffand generate the best Conventional Commit." - "Review my current changes and recommend whether they should be split into multiple commits."
- "Generate a Conventional Commit from the current unstaged changes."
- "Generate a Conventional Commit from
git diff --cached."
Generate commit from provided diff
- "Generate a Conventional Commit from this Git diff."
- "Analyze this patch and create the best Conventional Commit."
- "Determine the intent of this change instead of describing modified files."
- "Write a complete multi-line Conventional Commit including body and footer."
Improve commit quality
- "Recommend a better commit scope."
- "Suggest a shorter commit subject."
- "Rewrite this commit message following Conventional Commits."
- "Explain why this commit should be split."
Git workflow
- "Review my Git changes before I commit."
- "Suggest a clean staging strategy using
git add -p." - "Identify unrelated modifications."
- "Recommend the optimal commit order."
Validation
- "Validate this Conventional Commit."
- "Explain why this commit message is invalid."
- "Rewrite this commit following Conventional Commits 1.0.0."
Pull requests
- "Generate a PR title from these commits."
- "Generate a complete PR description."
- "Summarize these commits for reviewers."
Releases
- "Generate changelog entries from these commits."
- "Draft release notes for the next version."
- "Generate migration notes for breaking changes."
Best practices
- Always prioritize atomic commits.
- Focus on the intent of the change rather than modified filenames.
- Infer the correct commit type from behavior, not keywords.
- Add a scope only when it provides meaningful context.
- Keep commit subjects concise, imperative, and under 72 characters.
- Do not end commit subjects with a period.
- Include a body only when it adds useful context.
- Recommend splitting unrelated changes into separate commits.
- Prefer
git add -pover staging everything when unrelated changes exist. - Review
git diffbefore staging. - Review
git diff --cachedbefore committing. - Generate release notes from grouped Conventional Commits.
- Follow Conventional Commits 1.0.0 whenever possible.
Conventional Commit types
- feat — Introduce a new feature
- fix — Fix a bug
- refactor — Improve code without changing behavior
- perf — Improve performance
- docs — Documentation only
- style — Formatting without behavior changes
- test — Add or update tests
- build — Build system or dependencies
- ci — Continuous integration
- chore — Maintenance tasks
- revert — Revert previous commits
Output guidelines
When generating commits:
- Analyze the complete Git diff.
- Identify the primary intent.
- Detect unrelated logical changes.
- Recommend splitting commits when appropriate.
- Produce valid Conventional Commit messages.
- Keep the history clean and review-friendly.
- Generate bodies only when they improve understanding.
- Include breaking-change footers when necessary.
Preferred output format:
type(optional-scope): concise imperative subject
Optional body explaining what changed and why.
BREAKING CHANGE: description (if applicable)
Alternatives
Compare before choosing
alirezarezvani/claude-skills
app-store-optimization
App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist
prowler-cloud/prowler
postgresql-indexing
PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing index usage statistics, reindexing, dropping indexes, or working with partitioned table indexes. Also trigger when discussing index strategies, partial indexes, or index maintenance
wanshuiyin/Auto-claude-code-research-in-sleep
citation-audit
Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.
dotnet/skills
migrate-vstest-to-mtp
Migrates .NET test projects from VSTest to Microsoft.Testing.Platform (MTP). Use when user asks to "migrate to MTP", "switch from VSTest", "enable Microsoft.Testing.Platform", "use MTP runner", set OutputType=Exe only for test projects in Directory.Build.props, or mentions EnableMSTestRunner, EnableNUnitRunner, or UseMicrosoftTestingPlatformRunner. USE FOR: MTP behavioral differences vs VSTest (exit code 8, zero tests discovered, --ignore-exit-code, TESTINGPLATFORM_EXITCODE_IGNORE); centralizing