010108 version control
Multi-domain agent skills collection for AI coding agents (Claude, Cursor, Copilot, OpenCode, and more). Covers programming, biology, cooking, and future domains. Installable via npx skills add.
npx -y skills add natuleadan/skills --skill 010108-version-controlAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Conventional commit format, git staging safety, disaster recovery with git reflog, and commit message best practices.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
1.5 KB, as published. Nobody here has run it
Git Commits
Overview
Conventional commit messages and safe git workflows. Covers commit format rules, staging discipline, disaster recovery, and commit examples.
Quick Reference
Format
type(scope): description
Body (optional, blank line required)
Types
| Type | Version Bump | Usage |
|---|---|---|
upgrade | MAJOR | Breaking changes |
feat | MINOR | New features |
fix | PATCH | Bug fixes |
perf | PATCH | Performance improvements |
revert | PATCH | Reverting changes |
docs | NONE | Documentation |
style | NONE | Formatting, white-space |
refactor | NONE | Code restructuring |
test | NONE | Adding/fixing tests |
chore | NONE | Tooling, config |
ci | NONE | CI/CD changes |
Safe Staging Rules
- Stage by context — never
git add .blindly - Check old imports with
grepbefore moving files - Use
git add -uto include deleted files git stashbefore anygit reset --hard- Small frequent commits over one giant commit
References
- Commit Format — Format rules, types, scope
- Safe Git Workflow — Staging safety, disaster recovery, reflog
- Commit Examples — Real commit examples by type
- Quick Reference — Cheat sheet