home / skills / jeremylongshore / claude-code-plugins-plus-skills / windsurf-release-automation
/plugins/saas-packs/skill-databases/windsurf/skills/windsurf-release-automation
This skill automates windsurf release workflows by applying semantic versioning, changelog generation, and publishing releases from commits.
npx playbooks add skill jeremylongshore/claude-code-plugins-plus-skills --skill windsurf-release-automationReview the files below or copy the command above to add this skill to your agents.
---
name: "windsurf-release-automation"
description: |
Execute automate release processes with semantic versioning. Activate when users mention
"release automation", "version bump", "changelog generation", "semantic release",
or "publish release". Handles release engineering automation. Use when working with windsurf release automation functionality. Trigger with phrases like "windsurf release automation", "windsurf automation", "windsurf".
allowed-tools: "Read,Write,Edit,Bash(cmd:*)"
version: 1.0.0
license: MIT
author: "Jeremy Longshore <[email protected]>"
---
# Windsurf Release Automation
## Overview
This skill enables automated release workflows within Windsurf using Cascade AI. It analyzes commits to determine semantic version bumps, generates comprehensive changelogs, manages Git tags, and publishes releases. Cascade understands conventional commits to automatically categorize changes and highlight breaking changes for proper version increments.
## Prerequisites
- Windsurf IDE with Cascade enabled
- Git repository with commit history
- Conventional commits or consistent commit format
- npm/yarn/pnpm for JavaScript projects (or equivalent)
- CI/CD pipeline for automated publishing (optional)
## Instructions
1. **Configure Version Strategy**
2. **Set Up Automation**
3. **Prepare Release**
4. **Execute Release**
5. **Post-Release Tasks**
See `{baseDir}/references/implementation.md` for detailed implementation guide.
## Output
- Updated version in package.json
- Generated CHANGELOG.md entry
- Git tag for release version
- Published package to registry
- Release notes for distribution
## Error Handling
See `{baseDir}/references/errors.md` for comprehensive error handling.
## Examples
See `{baseDir}/references/examples.md` for detailed examples.
## Resources
- [Windsurf Release Automation](https://docs.windsurf.ai/features/release)
- [Semantic Release Documentation](https://semantic-release.gitbook.io/)
- [Conventional Commits](https://www.conventionalcommits.org/)
This skill automates release engineering for Windsurf projects using semantic versioning and conventional commits. It inspects commit history to determine version bumps, generates changelog entries, creates Git tags, and publishes releases to registries. The goal is reliable, repeatable releases integrated into CI/CD pipelines.
The skill analyzes commits according to Conventional Commits rules to classify changes as patch, minor, major, or breaking. It updates project version files (for example package.json), generates or appends a structured CHANGELOG.md entry, creates a Git tag, and can push and publish artifacts to configured registries. It integrates with Windsurf/Cascade automation and can be invoked manually or from CI with configurable strategies.
What commit format is required?
Conventional Commits or a consistent commit message format is required for reliable classification; otherwise you can configure custom parsing rules.
Can I preview changes before publishing?
Yes. Use the dry-run mode to generate the changelog and proposed version without modifying files, tags, or publishing artifacts.