Install
openclaw skills install release-guardGuard skill releases with pre-publish validation, quality checks, and safety gates. Use before publishing any skill to ensure it meets minimum standards, pas...
openclaw skills install release-guardRelease Guard is a quality assurance skill that validates skills before they are published or shared. It runs a comprehensive checklist of validations to catch common issues and ensure skills meet minimum standards.
The release-guard skill ensures that skill releases meet quality and safety standards. It runs pre-release validation checks including security scans, dependency audits, documentation completeness, and compatibility verification.
security-auditor for detailed security scans# Run all release checks
./scripts/release-check.sh <skill-directory>
# Run with auto-fix mode
./scripts/release-check.sh <skill-directory> --fix
# Quick validation (current directory)
./scripts/release-check.sh .
| Level | Description | Failure Action |
|---|---|---|
critical | Required for release | Blocks release |
standard | Best practice | Warning |
optional | Enhancement | Suggestion |
1.0.0, 1.2.3-beta.1)The tool produces a JSON report:
{
"skill": "example-skill",
"version": "1.2.0",
"timestamp": "2024-03-12T09:00:00Z",
"checks": {
"security": { "status": "pass", "issues": 0 },
"docs": { "status": "pass", "issues": 0 },
"version": { "status": "pass", "issues": 0 },
"deps": { "status": "pass", "issues": 0 }
},
"overall": "pass",
"warnings": [],
"errors": []
}
0 - All checks passed1 - One or more checks failed2 - Invalid arguments or skill not found