Compare commits

...

2 Commits

Author SHA1 Message Date
Claude c5fe8ca54c chore(claw-release): bump version to 0.0.5 2026-06-11 06:43:50 +00:00
Claude 5da8fb808d docs(claw-release): replace stale skill table with dynamic enumeration 2026-06-11 06:43:44 +00:00
2 changed files with 39 additions and 15 deletions
+12 -8
View File
@@ -1,6 +1,6 @@
---
name: claw-release
version: 0.0.4
version: 0.0.5
description: Release automation for Claw skills and website. Guides through version bumping, tagging, and release verification.
homepage: https://clawsec.prompt.security
metadata:
@@ -240,13 +240,17 @@ This skill (`claw-release`) is an internal skill.
## Existing Skills
| Skill | Category | Internal |
|-------|----------|----------|
| clawsec-feed | security | No |
| clawtributor | security | No |
| openclaw-audit-watchdog | security | No |
| soul-guardian | security | No |
| claw-release | utility | Yes |
Do not rely on a hardcoded list here — it drifts out of date as skills are
added. Enumerate the live set from the repo instead:
```bash
for f in skills/*/skill.json; do
jq -r '"\(.name)\t\(.openclaw.category // "-")\tinternal=\(.openclaw.internal // false)"' "$f"
done
```
Each skill's category and internal flag are the source of truth in its own
`skills/<name>/skill.json` (`.openclaw.category` and `.openclaw.internal`).
---
+27 -7
View File
@@ -1,24 +1,44 @@
{
"name": "claw-release",
"version": "0.0.4",
"version": "0.0.5",
"description": "Release automation for Claw skills and website. Guides through version bumping, tagging, and release verification.",
"author": "prompt-security",
"license": "AGPL-3.0-or-later",
"homepage": "https://clawsec.prompt.security",
"keywords": ["release", "versioning", "deployment", "automation", "ci-cd", "skills"],
"keywords": [
"release",
"versioning",
"deployment",
"automation",
"ci-cd",
"skills"
],
"sbom": {
"files": [
{ "path": "SKILL.md", "required": true, "description": "Release workflow guide" },
{ "path": "CHANGELOG.md", "required": true, "description": "Version history and release notes" }
{
"path": "SKILL.md",
"required": true,
"description": "Release workflow guide"
},
{
"path": "CHANGELOG.md",
"required": true,
"description": "Version history and release notes"
}
]
},
"openclaw": {
"emoji": "🚀",
"category": "utility",
"internal": true,
"requires": { "bins": ["bash", "git", "jq", "gh"] },
"requires": {
"bins": [
"bash",
"git",
"jq",
"gh"
]
},
"runtime": {
"required_env": [
"GH_TOKEN or existing gh auth"