Source Code
Skill Release Manager
Unified release tool for OpenClaw skills.
Features
- Version Bump: Automatically increments
package.jsonversion (patch/minor/major). - Git Ops: Commits the version bump to the local workspace.
- GitHub Release: Uses
skill-publisherto sync code to a remote repo and create a GitHub Release. - ClawHub Publish: Pushes the skill to the ClawHub registry.
Usage
node skills/skill-release-manager/index.js \
--path skills/private-evolver \
--remote https://github.com/autogame-17/evolver.git \
--bump patch \
--notes "Release notes here"
Options
--path: Path to the skill directory (required).--remote: Target GitHub repository URL (required).--bump: Version increment (patch,minor,major) or specific version (1.2.3). Default:patch.--notes: Release notes for GitHub.
Prerequisites
skill-publisherskill must be present.clawhubCLI must be authenticated.