010108 version control
Conventional commit format, git staging safety, disaster recovery with git reflog, and commit message best practices.From its SKILL.md
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.
2 things 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.
- runs commandsInstructs the agent to run 5 commands, including `git add .` and 4 more.
What its file declares
Copied from the file, not written here
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, 351 tokens by cl100k_base, 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
What ships with it: 6 files
11.7 KB alongside SKILL.md, 1 of them executable
references/
- commit-examples.md2.0 KB
- commit-format.md2.1 KB
- commit-rules.md3.9 KB
- quick-reference.md975 B
scripts/
- validate.pyruns2.2 KB
- metadata.json622 B