AI SummaryAutomates the release process for Claw skills including version bumping, git tagging, and release verification. Essential for maintainers and developers publishing skills to the ClawSec catalog.
Install
Copy this and paste it into Claude Code, Cursor, or any AI assistant:
I want to install the "claw-release" skill in my project. Please run this command in my terminal: # Install skill into the correct directory (2 files) mkdir -p .claude/skills/claw-release && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/claw-release/SKILL.md "https://raw.githubusercontent.com/prompt-security/clawsec/main/skills/claw-release/SKILL.md" && curl --retry 3 --retry-delay 2 --retry-all-errors -o .claude/skills/claw-release/skill.json "https://raw.githubusercontent.com/prompt-security/clawsec/main/skills/claw-release/skill.json" Then restart Claude Code (or reload the window in Cursor) so the skill is picked up.
Description
Release automation for Claw skills and website. Guides through version bumping, tagging, and release verification.
Claw Release
Internal tool for releasing skills and managing the ClawSec catalog. An internal tool by Prompt Security ---
Quick Reference
| Release Type | Command | Tag Format | |-------------|---------|------------| | Skill release | ./scripts/release-skill.sh <name> <version> | <name>-v<version> | | Pre-release | ./scripts/release-skill.sh <name> 1.0.0-beta1 | <name>-v1.0.0-beta1 | ---
Step 1: Determine Version Type
Ask what changed: • Bug fixes only → Patch (1.0.0 → 1.0.1) • New features, backward compatible → Minor (1.0.0 → 1.1.0) • Breaking changes → Major (1.0.0 → 2.0.0) • Testing/unstable → Pre-release (1.0.0-beta1, 1.0.0-rc1)
Verify skill directory exists
ls skills/<skill-name>/skill.json
Discussion
Health Signals
My Fox Den
Community Rating
Sign in to rate this booster