Release
Skill byerlikaya/claude-starter-kit/claude-starter/skills/release
Enterprise engineering workflow for Claude Code — not just prompts. AI agents that plan, build, audit, and ship with security gates, privacy checks, and approval-controlled commits. Safely adopt it into new or existing repositories.
npx -y skills add byerlikaya/claude-starter-kit --skill releaseAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 20 stars20 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.
What its author says it does
Copied from the file, not written here
Versioning and CHANGELOG: SemVer mapped from Conventional Commits, Keep a Changelog format, tagging, pre-release gates. Trigger phrases: "release", "version", "changelog", "version bump", "tag", "semver"
SKILL.md
1.0 KB, as published. Nobody here has run it
Release & CHANGELOG
SemVer mapping (derive from Conventional Commits)
fix:→ PATCH (x.y.Z)feat:→ MINOR (x.Y.0)BREAKING CHANGE:/feat!:→ MAJOR (X.0.0)
CHANGELOG (Keep a Changelog)
Headings: Added · Changed · Fixed · Removed · Security · Deprecated.
Every version is dated; the Unreleased section can be auto-populated from commits.
Pre-release gates (all must pass)
- Tests green +
sonarqube-checkPASSED -
dependency-auditclean (0 HIGH/CRITICAL) - CHANGELOG up to date
- Version number conforms to SemVer
Tagging
git tag -a vX.Y.Z -m "vX.Y.Z" # asks for approval (§4.4); push on explicit request (§4.5)
DoD
- Correct SemVer bump; complete CHANGELOG; tag + rollback plan ready.