smithery/timhiebenthal

commit-message-creator

This skill ensures all git commit messages follow the Conventional Commits specification.

Installation

$ npx skills add smithery/timhiebenthal --skill commit-message-creator

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/timhiebenthal.

npx skills add smithery/timhiebenthal

Browse all from smithery/timhiebenthal

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

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,333 B
  • docs SUMMARY.md 120 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Commit Message Creator

Instructions

When I ask you to commit changes or write a commit message, you must analyze the staged changes (diff) and categorize the work into one of the following types:

  • feat: A new feature for the user, not a new feature for builds or internal components.
  • fix: A bug fix for the user, not a fix to a build script.
  • docs: Changes to the documentation.
  • style: Formatting, missing semi colons, etc; no production code change.
  • refactor: Refactoring production code, eg. renaming a variable.
  • test: Adding missing tests, refactoring tests; no production code change.
  • chore: Updating grunt tasks etc; no production code change.

Rules

  1. Format: <type>(<optional scope>): <description>
  2. Style: Use the imperative, present tense: "change" not "changed" nor "changes".
  3. Case: The description should be lowercase and should not end with a period.
  4. Scope: If the change is specific to a module or package, include it in parentheses, e.g., feat(auth): add login logic.

Example

  • feat: add password strength meter
  • fix(ui): resolve alignment issue on mobile
  • chore: update dependencies