agentsclimarketplace

010108 version control

Skill natuleadan/skills/skills/010108-version-control

Conventional commit format, git staging safety, disaster recovery with git reflog, and commit message best practices.From its SKILL.md

Install
npx -y skills add natuleadan/skills --skill 010108-version-control

Assembled 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

TypeVersion BumpUsage
upgradeMAJORBreaking changes
featMINORNew features
fixPATCHBug fixes
perfPATCHPerformance improvements
revertPATCHReverting changes
docsNONEDocumentation
styleNONEFormatting, white-space
refactorNONECode restructuring
testNONEAdding/fixing tests
choreNONETooling, config
ciNONECI/CD changes

Safe Staging Rules

  1. Stage by context — never git add . blindly
  2. Check old imports with grep before moving files
  3. Use git add -u to include deleted files
  4. git stash before any git reset --hard
  5. Small frequent commits over one giant commit

References

What ships with it: 6 files

11.7 KB alongside SKILL.md, 1 of them executable

scripts/

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.