Git & Collaboration
SkillSecurityEnforce version control best practices for commits, branching, pull requests, and repository security. Use when writing commits, creating branches, merging, or opening pull requests.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Git & Collaboration skill
What this skill tells your AI
The instructions your AI receives, as published by hoangnguyen0403/agent-skills-standard in skills/common/common-git-collaboration/SKILL.md and read by ahel’s review.
Priority: P0 (CRITICAL)
1. Write Conventional Commits
- Format:
<type>(<scope>): <description>(e.g.,feat(auth): add login validation). - Types:
feat,fix,docs,style,refactor,perf,test,chore. - Use imperative mood: "add feature" not "added feature".
- One commit = one logical change — no mega-commits.
See implementation examples for conventional commit examples.
2. Manage Branches
- Name with prefixes:
feat/,fix/,hotfix/,refactor/,docs/. - Create new branch for every task to keep main stable and deployable.
- Never push directly to
mainordevelop— use Pull Requests. - Pull before you push to resolve conflicts locally.
- Prefer
git rebaseover merge for linear history on feature branches. - Use
git rebase -ito squash messy commits before pushing.
3. Submit Quality Pull Requests
- Limit to < 300 lines of code for effective review.
- State what changed, why, and how to test. Link issues (
Closes #123). - Self-review for obvious errors before requesting peers.
- PRs must pass all CI checks (lint, test, build) before merging.
4. Protect Secrets and Metadata
- Never commit
.env, keys, or certificates — use.gitignorestrictly. - Use
huskyorlefthookfor local Git Hooks enforcement. - Tag releases with SemVer (
vX.Y.Z) and updateCHANGELOG.md.
Anti-Patterns
- No direct push to main: All changes via PR, no exceptions.
- No mega-commits: One commit = one logical change. Split large ones.
- No secrets in history: Use
git filter-repoto purge; rotate secret.
References
Signals
- GitHub stars
- 565
- Forks
- 163
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
common-git-collaboration- Source
- github.com/hoangnguyen0403/agent-skills-standard