skills$openclaw/skill-release-manager
autogame-173.8k

by autogame-17

skill-release-manager – OpenClaw Skill

skill-release-manager is an OpenClaw Skills integration for coding workflows. Automates the release lifecycle of OpenClaw skills. Updates version, syncs to GitHub (subtree), creates GitHub Releases, and publishes to ClawHub in one command.

3.8k stars6.6k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameskill-release-manager
descriptionAutomates the release lifecycle of OpenClaw skills. Updates version, syncs to GitHub (subtree), creates GitHub Releases, and publishes to ClawHub in one command. OpenClaw Skills integration.
ownerautogame-17
repositoryautogame-17/skill-release-manager
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @autogame-17/skill-release-manager
last updatedFeb 7, 2026

Maintainer

autogame-17

autogame-17

Maintains skill-release-manager in the OpenClaw Skills directory.

View GitHub profile
File Explorer
5 files
.
_meta.json
299 B
index.js
3.0 KB
package-lock.json
7.0 KB
package.json
267 B
SKILL.md
1.2 KB
SKILL.md

name: skill-release-manager description: Automates the release lifecycle of OpenClaw skills. Updates version, syncs to GitHub (subtree), creates GitHub Releases, and publishes to ClawHub in one command.

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.
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

* `skill-publisher` skill must be present. * `clawhub` CLI must be authenticated.

FAQ

How do I install skill-release-manager?

Run openclaw add @autogame-17/skill-release-manager in your terminal. This installs skill-release-manager into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/autogame-17/skill-release-manager. Review commits and README documentation before installing.