Files
clawsec/skills/claw-release/skill.json
T
David Abutbul 1e48a955cc fix(release): exclude tests from skill payloads (#230)
* fix(release): exclude tests from skill payloads

* fix(release): normalize test path filtering

* fix(release): prefer GitHub artifacts for non-OpenClaw installs

* fix(release): keep legacy ClawHub publishing

* fix(release): address skill packaging review feedback

* chore(skills): bump release versions

* feat(skills): surface recommended platforms

* docs(skills): add signed release verification

* fix(skills): normalize PR version bumps

---------

Co-authored-by: David Abutbul <David.a@prompt.security>
2026-05-14 14:38:58 +03:00

52 lines
1.7 KiB
JSON

{
"name": "claw-release",
"version": "0.0.3",
"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"],
"sbom": {
"files": [
{ "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"] },
"runtime": {
"required_env": [
"GH_TOKEN or existing gh auth"
],
"optional_bins": [
"git-lfs"
]
},
"execution": {
"always": false,
"persistence": "No recurring automation; this is a maintainer-invoked release workflow.",
"network_egress": "Pushes git commits/tags and creates GitHub Releases when the maintainer runs the documented release flow."
},
"operator_review": [
"Internal maintainer tool only; it mutates git state, tags, and GitHub release metadata.",
"Run it only from a trusted checkout with maintainer credentials and a clean working tree.",
"Prefer non-destructive rollback steps; avoid rewriting history unless you explicitly intend to."
],
"triggers": [
"release skill",
"create release",
"bump version",
"tag release",
"publish skill",
"claw release",
"deploy skill",
"new version"
]
}
}