Create a versioned release with semantic versioning
Creates and manages semantic versioned releases by analyzing commits and updating version files.
npx claudepluginhub jugrajsingh/skillgardenThis skill is limited to using the following tools:
Start or finish a release with semantic versioning.
/gitmastery:release # Analyze and suggest version
/gitmastery:release 1.3.0 # Specific version
LAST_TAG=$(git describe --tags --abbrev=0 2>/dev/null)
echo "Last tag: $LAST_TAG"
git log $LAST_TAG..HEAD --oneline
| Pattern | Bump | Example |
|---|---|---|
| BREAKING or ! suffix | MAJOR | 1.2.3 → 2.0.0 |
| feat: | MINOR | 1.2.3 → 1.3.0 |
| fix:, perf: | PATCH | 1.2.3 → 1.2.4 |
AskUserQuestion:
question: |
Ready to create release?
Current: v1.2.1
Commits: 6 since last release
Changes detected:
- 2 feat: (new features)
- 3 fix: (bug fixes)
- 1 docs: (documentation)
Suggested: 1.3.0 (MINOR)
options:
- "1.3.0 (Recommended)" - MINOR
- "2.0.0" - MAJOR
- "1.2.2" - PATCH
git flow release start <version>
Common files to update:
pyproject.toml: version = "<version>"package.json: "version": "<version>"CHANGELOG.md: Add version headerUse changelog content for tag message. Skip pre-commit hooks that would reject the merge:
SKIP=no-commit-to-branch,conventional-commit git flow finish --tag -m "v<version>
## Added
- Feature 1
- Feature 2
## Fixed
- Bug fix 1"
Why SKIP? The merge commit is mechanical—all code was already validated when committed to the release branch. The
no-commit-to-branchandconventional-commithooks would otherwise reject the merge.
git push origin main --tags
git push origin develop
For urgent production fixes:
git checkout main
git flow hotfix start <name>
# ... fix ...
SKIP=no-commit-to-branch,conventional-commit git flow finish --tag
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.