LaunchKit · 2026
Back to Skills

sovereign-commit-craft

Git commit message expert.

0
267 downloads
by @ryudi84

Setup & Installation

openclaw skills install @ryudi84/sovereign-commit-craft

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install sovereign-commit-craft

What This Skill Does

Analyzes git diffs and staged changes to generate conventional commit messages, changelogs, release notes, and pull request descriptions. Enforces the Conventional Commits specification and provides SemVer guidance based on commit types.

Covers the full git documentation workflow in one place, from individual commit messages to changelogs and PR descriptions, with built-in Conventional Commits enforcement and version bump reasoning.

When to use it

  • Generating a commit message from a staged diff
  • Writing a PR description before opening a code review
  • Drafting release notes when cutting a new version
  • Building a changelog from a range of commits
  • Reviewing existing commit messages for spec compliance

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Write a commit message for this diff that adds Redis caching to the user profile endpoint

AGENT
  1. 1Reads the diff and inventories added, modified, and removed files and functions
  2. 2Identifies the primary theme and selects the appropriate commit type and scope
  3. 3Checks for breaking changes and determines which parties are affected
  4. 4Drafts a subject line under 72 characters in imperative mood
  5. 5Writes a body explaining why caching was added and appends relevant footers
OUTPUT

A complete conventional commit message: perf(users): cache profile queries to reduce database load, with a body explaining the motivation and any issue references