git-cmt-helper

v1.0.0

Generate standardized git commit messages following Conventional Commits format. Use this skill when the user asks to commit code, write a commit message, or...

0· 302·1 current·1 all-time
byTresser@0xtresser

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for 0xtresser/git-cmt-helper.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "git-cmt-helper" (0xtresser/git-cmt-helper) from ClawHub.
Skill page: https://clawhub.ai/0xtresser/git-cmt-helper
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install 0xtresser/git-cmt-helper

ClawHub CLI

Package manager switcher

npx clawhub@latest install git-cmt-helper
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name and description (generate Conventional Commits) match the SKILL.md content and the included modules list. The skill does not request unrelated binaries, credentials, or config paths.
Instruction Scope
SKILL.md is narrowly focused on commit message structure, scope selection, examples, and rules. It references a local modules.md for valid scopes and suggests checking file paths being changed, which is reasonable for choosing a scope; it does not instruct the agent to exfiltrate data or call external endpoints.
Install Mechanism
No install spec and no code files — instruction-only skills are the lowest disk-execution risk. Nothing is downloaded or written to disk by the skill itself.
Credentials
No environment variables, credentials, or config paths are requested. The constraints (valid scopes) are provided in the included references/modules.md file.
Persistence & Privilege
always is false and model invocation is allowed (platform default). The skill does not request persistent presence or modify other skills or system settings.
Assessment
This skill is an instruction-only commit-message formatter and appears coherent with its purpose. If you install it, ensure your agent already has appropriate repository access (read context/diffs) because the guide suggests checking changed file paths to choose scope. No secrets or external downloads are required. Review SKILL.md and references/modules.md if you want to confirm the enforced conventions before enabling the skill.

Like a lobster shell, security has layers — review code before you run it.

latestvk971wnz8sy0hvpn0m0t5rh8s9582ay4e
302downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

Git Commit Message Guide

Format

Every commit message MUST follow this structure:

<type>(<scope>): <subject>

[optional body]

[optional footer]

Type (required)

TypeWhen to use
featNew feature or capability
fixBug fix
docsDocumentation only
refactorCode change that neither fixes nor adds
testAdding or updating tests
choreBuild, CI, tooling changes

Scope (required)

Scope MUST be a real module name from this project. See references/modules.md for the full list.

If unsure of the scope, check the file paths being changed — the top-level directory is usually the correct scope.

Subject (required)

  • Imperative mood: "add feature" not "added feature"
  • No period at the end
  • Max 72 characters total (including type and scope prefix)
  • Lowercase first letter

Body (optional)

  • Explain WHY, not WHAT (the diff shows what changed)
  • Wrap at 72 characters
  • Separate from subject with blank line

Breaking Changes

If the commit introduces a breaking change, add footer:

BREAKING CHANGE: <description of what breaks and migration path>

Examples

Good:

feat(auth): add JWT token refresh endpoint

Tokens now auto-refresh 5 minutes before expiry.
Previously users had to re-login after token expiration.
fix(parser): handle empty input without crashing
refactor(db): extract connection pooling to separate module

BREAKING CHANGE: DatabaseClient constructor no longer accepts
pool config. Use PoolConfig.create() instead.

Bad:

updated some stuff          ← no type, no scope, vague
feat: Add new Feature.      ← capitalized, period, missing scope
fix(misc): various fixes    ← "misc" is not a real module

Comments

Loading comments...