Building Skills
Versioning
Semantic versioning for FindSkills.
FindSkills uses semantic versioning (semver). Understanding versioning helps users know what to expect when upgrading.
Version Format
MAJOR.MINOR.PATCH — e.g. 2.4.1
- MAJOR — Breaking changes to skill behavior
- MINOR — New capabilities, backward compatible
- PATCH — Bug fixes, instruction improvements
Bump Version
bash
npx skills version patch # 1.0.0 → 1.0.1
npx skills version minor # 1.0.0 → 1.1.0
npx skills version major # 1.0.0 → 2.0.0