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

v0.0.1

Sobre este Skill

Perfeito para Agentes de Desenvolvedor que necessitam de fluxos de trabalho de lançamento de habilidades e gerenciamento de catálogo otimizados. 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

Perfeito para Agentes de Desenvolvedor que necessitam de fluxos de trabalho de lançamento de habilidades e gerenciamento de catálogo otimizados. Release automation for Claw skills and website. Guides through version bumping, tagging, and release verification.

Por que usar essa habilidade

Habilita os agentes a automatizar lançamentos de habilidades e gerenciar o catálogo ClawSec usando scripts de shell e marcação de versão, suportando tanto lançamentos de habilidades quanto pré-lançamentos com comandos como ./scripts/release-skill.sh e formatos de marcação como <name>-v<version>.

Melhor para

Perfeito para Agentes de Desenvolvedor que necessitam de fluxos de trabalho de lançamento de habilidades e gerenciamento de catálogo otimizados.

Casos de Uso Práticos for claw-release

Automatizar lançamentos de habilidades com controle de versão
Gerenciar o catálogo ClawSec com marcação de pré-lançamento
Otimizar fluxos de trabalho de lançamento para desenvolvedores e equipes de segurança

! Segurança e Limitações

  • Requer ambiente de execução de script de shell
  • Limitado ao gerenciamento do catálogo ClawSec
  • Versionamento segue formato de marcação específico como <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?

Perfeito para Agentes de Desenvolvedor que necessitam de fluxos de trabalho de lançamento de habilidades e gerenciamento de catálogo otimizados. 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: Automatizar lançamentos de habilidades com controle de versão, Gerenciar o catálogo ClawSec com marcação de pré-lançamento, Otimizar fluxos de trabalho de lançamento para desenvolvedores e equipes de segurança.

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?

Requer ambiente de execução de script de shell. Limitado ao gerenciamento do catálogo ClawSec. Versionamento segue formato de marcação específico como <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.

Habilidades Relacionadas

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

Ver tudo

openclaw-release-maintainer

Logo of openclaw
openclaw

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

widget-generator

Logo of f
f

Gerar plugins de widgets personalizáveis para o sistema de feed do prompts.chat

flags

Logo of vercel
vercel

O Framework React

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Desenvolvedor