com um clique
claw-release
Release automation for Claw skills and website. Guides through version bumping, tagging, and release verification.
Menu
Release automation for Claw skills and website. Guides through version bumping, tagging, and release verification.
Quality assurance for web accessibility and usability, particularly for users with disabilities. Use when involved in any web project.
ClawHub reputation checker for ClawSec suite. Enhances guarded skill installer with VirusTotal Code Insight reputation scores and additional safety checks.
Security advisory feed with automated NVD CVE polling for OpenClaw-related vulnerabilities. Updated daily.
ClawSec suite manager with embedded advisory-feed monitoring, cryptographic signature verification, approval-gated malicious-skill response, and guided setup for additional security skills.
Community incident reporting for AI agents. Contribute to collective security by reporting threats.
Complete Drizzle ORM documentation in markdown format. Use when working with Drizzle ORM - covers schema definition, queries, migrations, database connections (PostgreSQL, MySQL, SQLite), integrations (Neon, Supabase, PlanetScale, Cloudflare D1, Turso), column types, relations, transactions, and framework usage (Next.js, SvelteKit, Astro).
| name | claw-release |
| version | 0.0.1 |
| description | Release automation for Claw skills and website. Guides through version bumping, tagging, and release verification. |
| homepage | https://clawsec.prompt.security |
| metadata | {"openclaw":{"emoji":"🚀","category":"utility","internal":true}} |
| clawdis | {"emoji":"🚀","requires":{"bins":["git","jq","gh"]}} |
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> |
| Pre-release | ./scripts/release-skill.sh <name> 1.0.0-beta1 | <name>-v1.0.0-beta1 |
Ask what changed:
# Check for uncommitted changes
git status
# Verify skill directory exists
ls skills/<skill-name>/skill.json
# Get current version
jq -r '.version' skills/<skill-name>/skill.json
./scripts/release-skill.sh <skill-name> <new-version>
The script will:
git push && git push origin <skill-name>-v<version>
After pushing, the CI/CD pipeline will:
Verify at:
https://github.com/prompt-security/clawsec/releases/tag/<skill-name>-v<version>If you need to undo before pushing:
git reset --hard HEAD~1 && git tag -d <skill-name>-v<version>
For beta, alpha, or release candidates:
./scripts/release-skill.sh <skill-name> 1.2.0-beta1
./scripts/release-skill.sh <skill-name> 1.2.0-alpha1
./scripts/release-skill.sh <skill-name> 1.2.0-rc1
Pre-releases are automatically marked in GitHub Releases.
| Error | Solution |
|---|---|
Tag already exists | Choose a different version number |
Version mismatch in CI | Ensure you used the release script (not manual tagging) |
SKILL.md version mismatch | Ensure you used the release script which updates both skill.json and SKILL.md |
Uncommitted changes | Commit or stash first: git stash or git add . && git commit |
skill.json not found | Verify skill directory path is correct |
Skills with "internal": true in their openclaw section:
This skill (claw-release) is an internal skill.
| Skill | Category | Internal |
|---|---|---|
| clawsec-feed | security | No |
| clawtributor | security | No |
| openclaw-audit-watchdog | security | No |
| soul-guardian | security | No |
| claw-release | utility | Yes |
After release, confirm:
MIT License - See repository for details.
Built by the Prompt Security team.