Claude Code Plugins

Community-maintained marketplace

Feedback

Create a conventional commit using chez_commit. Use when the user asks to commit changes. Do not EVER use

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md


name: commit description: Create a conventional commit using chez_commit. Use when the user asks to commit changes. Do not EVER use without user request.

Create a commit using chez_commit, which stages the specified files and commits them.

Usage

chez_commit ...

Valid Tags (in order of preference)

  1. feat - New feature, feature improvement, or feature removal
  2. fix - User-facing bug fix (not linting errors unless they caught a real bug)
  3. ref - Refactor/restructure production code without changing external behavior. IMPORTANT: Only use 'ref' when there are ZERO user-facing changes. If users would notice any difference in behavior, use 'feat' or 'fix' instead.
  4. chore - Other changes (build scripts, CI/CD, deps, linting, formatting, documentation) not modifying production code

Instructions

  1. Run chez_commit <tag> "<message>" <file>...
  2. The specified files will be staged automatically
  3. The message can contain newlines for multi-line commits
  4. NEVER mention "Claude" or "Claude Code" in commit messages - write as if a human authored the commit

Example

chez_commit feat "Add user authentication

This adds login and logout functionality." src/auth.py src/login.py