smithery.ai

commit-helper

Generates clear, conventional commit messages from git diffs. Use when writing commit messages or reviewing staged changes.

First seen Mar 20, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsRead, Grep, Glob, Bash

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,194 B
  • docs SUMMARY.md 144 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 9 installs

SKILL.md

Commit Helper Skill

Purpose

This skill helps generate high-quality commit messages following conventional commit format.

Instructions

  1. Run git diff --staged to see changes to be committed
  2. Analyze the changes to understand:

- What files were modified - What type of change (feat, fix, refactor, docs, etc.) - What the impact of the change is

  1. Generate a commit message with:

- A summary line under 50 characters - A blank line - A detailed description explaining the "why" - Optional: List of affected components

Commit Types

  • feat: New feature
  • fix: Bug fix
  • refactor: Code refactoring
  • docs: Documentation changes
  • test: Adding or updating tests
  • chore: Maintenance tasks

Examples

feat: add user authentication flow

Implement OAuth2 authentication with support for Google and GitHub providers.
This enables users to sign in without creating separate credentials.

Affected: src/auth/, src/components/Login.tsx