claw-release — for Claude Code claw-release, CurryDash-Central-Hub, community, for Claude Code, ide skills, Pre-release, ### Step 3: Run Release Script, Tag already exists, Version mismatch in CI, SKILL.md version mismatch

v0.0.1

Об этом навыке

Подходящий сценарий: Ideal for AI agents that need internal tool for releasing skills and managing the clawsec catalog. Локализованное описание: # Claw Release Internal tool for releasing skills and managing the ClawSec catalog. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Возможности

Internal tool for releasing skills and managing the ClawSec catalog.
An internal tool by Prompt Security
Release Type Command Tag Format
------------- --------- ------------
Skill release ./scripts/release-skill.sh <name <version <name -v<version

# Ключевые темы

CoralShades CoralShades
[0]
[0]
Обновлено: 3/20/2026

Skill Overview

Start with fit, limitations, and setup before diving into the repository.

Подходящий сценарий: Ideal for AI agents that need internal tool for releasing skills and managing the clawsec catalog. Локализованное описание: # Claw Release Internal tool for releasing skills and managing the ClawSec catalog. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Зачем использовать этот навык

Рекомендация: claw-release helps agents internal tool for releasing skills and managing the clawsec catalog. Claw Release Internal tool for releasing skills and managing the ClawSec catalog. This AI agent skill

Подходит лучше всего

Подходящий сценарий: Ideal for AI agents that need internal tool for releasing skills and managing the clawsec catalog.

Реализуемые кейсы использования for claw-release

Сценарий использования: Applying Internal tool for releasing skills and managing the ClawSec catalog
Сценарий использования: Applying An internal tool by Prompt Security
Сценарий использования: Applying Release Type Command Tag Format

! Безопасность и ограничения

  • Ограничение: Bug fixes only → Patch (1.0.0 → 1.0.1)
  • Ограничение: If you need to undo before pushing:
  • Ограничение: Requires repository-specific context from the skill documentation

About The Source

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Labs-демо

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ и шаги установки

These questions and steps mirror the structured data on this page for better search understanding.

? Частые вопросы

Что такое claw-release?

Подходящий сценарий: Ideal for AI agents that need internal tool for releasing skills and managing the clawsec catalog. Локализованное описание: # Claw Release Internal tool for releasing skills and managing the ClawSec catalog. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

Как установить claw-release?

Выполните команду: npx killer-skills add CoralShades/CurryDash-Central-Hub/claw-release. Она работает с Cursor, Windsurf, VS Code, Claude Code и более чем 19 другими IDE.

Для чего можно использовать claw-release?

Ключевые сценарии использования: Сценарий использования: Applying Internal tool for releasing skills and managing the ClawSec catalog, Сценарий использования: Applying An internal tool by Prompt Security, Сценарий использования: Applying Release Type Command Tag Format.

Какие IDE совместимы с claw-release?

Этот навык совместим с Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Для единой установки используйте CLI Killer-Skills.

Есть ли ограничения у claw-release?

Ограничение: Bug fixes only → Patch (1.0.0 → 1.0.1). Ограничение: If you need to undo before pushing:. Ограничение: Requires repository-specific context from the skill documentation.

Как установить этот skill

  1. 1. Откройте терминал

    Откройте терминал или командную строку в директории проекта.

  2. 2. Запустите команду установки

    Выполните: npx killer-skills add CoralShades/CurryDash-Central-Hub/claw-release. CLI автоматически определит вашу IDE или агента и настроит навык.

  3. 3. Начните использовать skill

    Skill уже активен. Ваш AI-агент может сразу использовать claw-release в текущем проекте.

! Source Notes

This page is still useful for installation and source reference. Before using it, compare the fit, limitations, and upstream repository notes above.

Upstream Repository Material

The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.

Upstream Source

claw-release

# Claw Release Internal tool for releasing skills and managing the ClawSec catalog. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

SKILL.md
Readonly
Upstream Repository Material
The section below comes from the upstream repository. Use it as supporting material alongside the fit, use-case, and installation summary on this page.
Upstream Source

Claw Release

Internal tool for releasing skills and managing the ClawSec catalog.

An internal tool by Prompt Security


Quick Reference

Release TypeCommandTag 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

Release Workflow

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)

Step 2: Pre-flight Checks

bash
1# Check for uncommitted changes 2git status 3 4# Verify skill directory exists 5ls skills/<skill-name>/skill.json 6 7# Get current version 8jq -r '.version' skills/<skill-name>/skill.json

Step 3: Run Release Script

bash
1./scripts/release-skill.sh <skill-name> <new-version>

The script will:

  1. Validate version format (semver)
  2. Check tag doesn't already exist
  3. Update skill.json version
  4. Update SKILL.md frontmatter version (if file exists)
  5. Update hardcoded version URLs (feed_url)
  6. Commit changes
  7. Create annotated git tag

Step 4: Push Release

bash
1git push && git push origin <skill-name>-v<version>

Step 5: Verify Release

After pushing, the CI/CD pipeline will:

  1. Validate skill exists
  2. Verify version matches skill.json
  3. Verify version matches SKILL.md frontmatter (if exists)
  4. Generate checksums from SBOM
  5. Create .skill package (ZIP)
  6. Create GitHub Release
  7. Trigger website rebuild (for non-internal skills)

Verify at:

  • GitHub Releases: https://github.com/prompt-security/clawsec/releases/tag/<skill-name>-v<version>
  • GitHub Actions: Check workflow run status

Undo a Release (Before Push)

If you need to undo before pushing:

bash
1git reset --hard HEAD~1 && git tag -d <skill-name>-v<version>

Pre-release Versions

For beta, alpha, or release candidates:

bash
1./scripts/release-skill.sh <skill-name> 1.2.0-beta1 2./scripts/release-skill.sh <skill-name> 1.2.0-alpha1 3./scripts/release-skill.sh <skill-name> 1.2.0-rc1

Pre-releases are automatically marked in GitHub Releases.


Common Issues

ErrorSolution
Tag already existsChoose a different version number
Version mismatch in CIEnsure you used the release script (not manual tagging)
SKILL.md version mismatchEnsure you used the release script which updates both skill.json and SKILL.md
Uncommitted changesCommit or stash first: git stash or git add . && git commit
skill.json not foundVerify skill directory path is correct

Internal Skills

Skills with "internal": true in their openclaw section:

  • Are released normally via GitHub Releases
  • Are NOT shown in the public skills catalog website
  • Can still be downloaded directly from release URLs

This skill (claw-release) is an internal skill.


Existing Skills

SkillCategoryInternal
clawsec-feedsecurityNo
clawtributorsecurityNo
openclaw-audit-watchdogsecurityNo
soul-guardiansecurityNo
claw-releaseutilityYes

Verification Checklist

After release, confirm:

  • GitHub Release exists with correct tag
  • Release has: skill.json, SKILL.md, checksums.json, .skill package
  • Release is marked as pre-release if applicable
  • GitHub Actions workflow completed successfully
  • Website updated (for non-internal skills only)

License

GNU AGPL v3.0 or later - See repository for details.

Built by the Prompt Security team.

Связанные навыки

Looking for an alternative to claw-release or another community skill for your workflow? Explore these related open-source skills.

Показать все

openclaw-release-maintainer

Logo of openclaw
openclaw

Локализованное описание: 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

widget-generator

Logo of f
f

Локализованное описание: Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor

flags

Logo of vercel
vercel

Локализованное описание: The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Браузер

pr-review

Logo of pytorch
pytorch

Локализованное описание: Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Разработчик