claw-release — community claw-release, CurryDash-Central-Hub, community, ide skills

v0.0.1

이 스킬 정보

개발자 에이전트가 스킬 릴리스 워크플ロー와 카탈로그 관리를 간소화해야 하는 경우에 적합합니다. Release automation for Claw skills and website. Guides through version bumping, tagging, and release verification.

CoralShades CoralShades
[0]
[0]
Updated: 3/12/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
7/11
Quality Score
47
Canonical Locale
en
Detected Body Locale
en

개발자 에이전트가 스킬 릴리스 워크플ロー와 카탈로그 관리를 간소화해야 하는 경우에 적합합니다. Release automation for Claw skills and website. Guides through version bumping, tagging, and release verification.

이 스킬을 사용하는 이유

에이전트가 스킬 릴리스를 자동화하고 쉘 스크립트 및 버전 태그를 사용하여 ClawSec 카탈로그를 관리할 수 있도록 합니다. ./scripts/release-skill.sh와 같은 명령어와 <name>-v<version>과 같은 태그 형식을 사용하여 스킬의 릴리스와 프리 릴리스를 지원합니다.

최적의 용도

개발자 에이전트가 스킬 릴리스 워크플ロー와 카탈로그 관리를 간소화해야 하는 경우에 적합합니다.

실행 가능한 사용 사례 for claw-release

버전 관리를 사용한 스킬 릴리스 자동화
프리 릴리스 태그를 사용한 ClawSec 카탈로그 관리
개발자와 보안 팀을 위한 릴리스 워크플로우 최적화

! 보안 및 제한 사항

  • 쉘 스크립트 실행 환경이 필요함
  • ClawSec 카탈로그 관리만 가능
  • 버전 관리는 특정 태그 형식 <name>-v<version>을 따름

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs 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 & Installation Steps

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

? Frequently Asked Questions

What is claw-release?

개발자 에이전트가 스킬 릴리스 워크플ロー와 카탈로그 관리를 간소화해야 하는 경우에 적합합니다. Release automation for Claw skills and website. Guides through version bumping, tagging, and release verification.

How do I install claw-release?

Run the command: npx killer-skills add CoralShades/CurryDash-Central-Hub/claw-release. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for claw-release?

Key use cases include: 버전 관리를 사용한 스킬 릴리스 자동화, 프리 릴리스 태그를 사용한 ClawSec 카탈로그 관리, 개발자와 보안 팀을 위한 릴리스 워크플로우 최적화.

Which IDEs are compatible with claw-release?

This skill is compatible with 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. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for claw-release?

쉘 스크립트 실행 환경이 필요함. ClawSec 카탈로그 관리만 가능. 버전 관리는 특정 태그 형식 <name>-v<version>을 따름.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add CoralShades/CurryDash-Central-Hub/claw-release. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use claw-release immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

claw-release

Install claw-release, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

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

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
인공지능

widget-generator

Logo of f
f

prompts.chat 피드 시스템을 위한 사용자 지정 가능한 위젯 플러그인을 생성합니다

149.6k
0
인공지능

flags

Logo of vercel
vercel

리액트 프레임워크

138.4k
0
브라우저

pr-review

Logo of pytorch
pytorch

파이썬에서 텐서와 동적 신경망 구현 및 강력한 GPU 가속 지원

98.6k
0
개발자