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

技能概览

先看适用场景、限制条件和安装路径,再决定是否继续深入。

适用场景: 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 supports Claude

适用 Agent 类型

适用场景: Ideal for AI agents that need internal tool for releasing skills and managing the clawsec catalog.

赋予的主要能力 · 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

关于来源内容

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

实验室 Demo

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

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/Agent。

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。

claw-release 支持哪些 IDE 或 Agent?

该技能兼容 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。可使用 Killer-Skills CLI 一条命令通用安装。

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。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add CoralShades/CurryDash-Central-Hub/claw-release。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    claw-release 已启用,可立即在当前项目中调用。

! 来源说明

此页面仍可作为安装与查阅参考。继续使用前,请结合上方适用场景、限制条件和上游仓库说明一起判断。

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.

相关技能

寻找 claw-release 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

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.

333.8k
0
AI

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, and Windsurf

149.6k
0
AI

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
开发者工具