Sub-skill of github-release-manager: Semantic Versioning (+2).
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill semantic-versioning --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Semantic Versioning?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-semantic-versioning)More formats (shields.io, HTML) on the badges page.
---
name: github-release-manager-semantic-versioning
description: 'Sub-skill of github-release-manager: Semantic Versioning (+2).'
version: 1.0.0
category: development
type: reference
scripts_exempt: true
---
# Semantic Versioning (+2)
## Semantic Versioning
```javascript
const versionStrategy = {
major: "Breaking changes or architecture overhauls",
minor: "New features, GitHub integration, swarm enhancements",
patch: "Bug fixes, documentation updates, dependency updates",
coordination: "Cross-package version alignment"
}
```
## Multi-Stage Validation
```javascript
const validationStages = [
"unit_tests", // Individual package testing
"integration_tests", // Cross-package integration
"performance_tests", // Performance regression detection
"compatibility_tests", // Version compatibility validation
"documentation_tests", // Documentation accuracy verification
"deployment_tests" // Deployment simulation
]
```
## Rollback Strategy
```javascript
const rollbackPlan = {
triggers: ["test_failures", "deployment_issues", "critical_bugs"],
automatic: ["failed_tests", "build_failures"],
manual: ["user_reported_issues", "performance_degradation"],
recovery: "Previous stable version restoration"
}
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!