โ† All skills
Tencent SkillHub ยท Developer Tools

Semver Helper

Semantic Versioning 2.0.0 reference guide. Quick decision trees and examples for choosing MAJOR, MINOR, or PATCH version bumps.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Semantic Versioning 2.0.0 reference guide. Quick decision trees and examples for choosing MAJOR, MINOR, or PATCH version bumps.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

Semver Helper

Quick reference for Semantic Versioning 2.0.0 decisions.

The Golden Rule

Given version MAJOR.MINOR.PATCH, increment: LevelBump WhenReset Lower?MAJOR (X.0.0)Breaking changes (incompatible API changes)Yes, MINOR and PATCH โ†’ 0MINOR (0.X.0)New features (backwards compatible)Yes, PATCH โ†’ 0PATCH (0.0.X)Bug fixes (backwards compatible)No

Quick Decision Tree

Did you change anything users depend on? โ”œโ”€ No (internal only) โ†’ PATCH โ””โ”€ Yes โ””โ”€ Did you remove/change existing behavior? โ”œโ”€ Yes โ†’ MAJOR โ””โ”€ No (only added new stuff) โ””โ”€ Is the new stuff visible to users? โ”œโ”€ Yes โ†’ MINOR โ””โ”€ No โ†’ PATCH

๐Ÿ”ด MAJOR (Breaking)

Remove a function, endpoint, or CLI flag Change the return type of a function Require a new mandatory parameter Change default behavior significantly Rename something users depend on Upgrade a dependency that forces downstream changes Examples: removeUser() โ†’ deleteUser() rename API response format changed from {id: 1} to {data: {id: 1}} Dropping support for Node 16 (if users must upgrade)

๐ŸŸก MINOR (Feature)

Add new functionality Add optional parameters Add new exports/exports Deprecate old features (warn, don't remove) Performance improvements (no API change) Examples: Add createUser() alongside existing user functions Add --format json flag to CLI Add new event listeners/hooks Mark old method as deprecated (still works)

๐ŸŸข PATCH (Fix)

Fix bugs without changing intended behavior Documentation updates Internal refactoring (no visible change) Dependency updates (no API change) Test additions Examples: Fix null pointer exception Correct typo in error message Fix race condition Update README

Version Progression Examples

ChangesVersion Bumpfix: null pointer1.2.3 โ†’ 1.2.4feat: add auth1.2.3 โ†’ 1.3.0breaking: remove old API1.2.3 โ†’ 2.0.0fix: bug + feat: new thing1.2.3 โ†’ 1.3.0 (MINOR wins)fix: bug + breaking: remove API1.2.3 โ†’ 2.0.0 (MAJOR wins)

Pre-releases

Use suffixes for testing before stable: 2.0.0-alpha.1 โ€” Very early, unstable 2.0.0-beta.2 โ€” Feature complete, testing 2.0.0-rc.1 โ€” Release candidate, final testing Pre-releases sort before their stable version: 1.0.0-alpha < 1.0.0-beta < 1.0.0-rc < 1.0.0

Common Edge Cases

SituationBumpWhyFix a bug that was introduced this versionPATCHStill a fixDeprecate a feature (but keep it working)MINORNew "deprecated" state is infoChange undocumented/internal behaviorPATCHUsers shouldn't depend on itSecurity fix that requires API changeMAJORBreaking for securityRewriting internals, same behaviorPATCHInvisible to usersAdding tests/docs onlyPATCHNo code change

Anti-Patterns

โŒ Don't bump MAJOR for big new features (unless breaking) โŒ Don't bump MINOR for bug fixes โŒ Don't bump PATCH for new functionality โŒ Don't keep old numbers when bumping: 1.2.3 โ†’ 2.2.3 is wrong

Cheat Sheet

Users' code breaks? โ†’ MAJOR Users get new toys? โ†’ MINOR Users get fixes? โ†’ PATCH

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc