This directory contains Claude Code skills for automating common tasks related to release workflows.
Skills are instruction files that teach Claude Code how to perform specific tasks. When you install a skill, Claude Code can automatically help you with that task when you ask for it.
| Skill | Description |
|---|---|
| automated-release-setup | Set up automated release workflow for SonarSource analyzer projects |
Download the skill file to your Claude Code skills directory:
# Create the skills directory if it doesn't exist
mkdir -p ~/.claude/skills
# Download the skill
curl -o ~/.claude/skills/automated-release-setup.md \
https://raw.githubusercontent.com/SonarSource/release-github-actions/master/skills/automated-release-setup/automated-release-setup.md-
Clone this repository (if you haven't already):
git clone https://github.com/SonarSource/release-github-actions.git
-
Create a symlink to the skill:
mkdir -p ~/.claude/skills ln -s /path/to/release-github-actions/skills/automated-release-setup/automated-release-setup.md \ ~/.claude/skills/automated-release-setup.md
Once installed, simply ask Claude Code to help you with the task. For example:
- "Set up automated release workflow"
- "Configure automated release for this project"
- "Help me create the release automation workflows"
Claude Code will recognize the request and follow the skill instructions to guide you through the process.
To update a skill to the latest version:
# If installed via curl
curl -o ~/.claude/skills/automated-release-setup.md \
https://raw.githubusercontent.com/SonarSource/release-github-actions/master/skills/automated-release-setup/automated-release-setup.md
# If installed via symlink, just pull the latest changes
cd /path/to/release-github-actions
git pullIf you want to contribute a new skill:
- Create a new directory under
skills/with your skill name - Add a markdown file with the skill instructions (use the existing skill as a template)
- Update this README and the main repository README to include your skill in the "Available Skills" table
- Submit a pull request