skill-release-manager

Review·Scanned 2/17/2026

Automates skill releases by bumping package.json, committing, running ../skill-publisher/index.js --remote, and invoking clawhub publish. The script executes shell commands (execSync), invokes networked publishing to https://github.com/autogame-17/evolver.git/user-provided remotes, and references CLAWHUB_AUTH.

from clawhub.ai·v6e0baea·11.4 KB·0 installs
Scanned from 1.0.0 at 6e0baea · Transparency log ↗
$ vett add clawhub.ai/autogame-17/skill-release-managerReview findings below

Skill Release Manager

Unified release tool for OpenClaw skills.

Features

  1. Version Bump: Automatically increments package.json version (patch/minor/major).
  2. Git Ops: Commits the version bump to the local workspace.
  3. GitHub Release: Uses skill-publisher to sync code to a remote repo and create a GitHub Release.
  4. 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-publisher skill must be present.
  • clawhub CLI must be authenticated.