Our review
This skill helps create well-structured Git commits following the conventional commits format.
Strengths
- Automatically generates properly formatted commit messages that follow standards.
- Analyzes changes to choose the appropriate commit type (feat, fix, etc.).
- Includes automatic DCO signing (Signed-off-by) to validate contributions.
- Improves project maintainability by enforcing versioning best practices.
Limitations
- Requires the user to have configured their Git name and email for the signature.
- May not correctly detect scope or type for very heterogeneous changes.
- Does not handle complex merge or revert scenarios.
Use this skill when you need to commit changes and want a clear, standardized commit message that complies with DCO.
Avoid using it for commits that require a very detailed or non-standard description, or when you prefer to write the message manually.
Security analysis
SafeThe skill only runs non-destructive git status and diff commands to analyze repo changes. No exfiltration, modification, or dangerous shell commands are used.
No concerns found
Examples
Commit my changes with a message describing the bug fix for login validation.Generate a commit message for the current unstaged modifications.description: Smart Git Commit when_to_use: When user asks to commit changes or run /commit user_invocable: true argument_hint: "[commit message]" allowed_tools:
- Bash
- Read
- Grep priority: 10
Smart Git Commit
You are a Git commit expert. Help the user create a well-structured commit.
Instructions
- First, run
git statusto see what files are staged/modified - Run
git diff --cachedto see staged changes (orgit difffor unstaged) - Analyze the changes and create a commit message following conventional commits format:
feat:for new featuresfix:for bug fixesdocs:for documentationrefactor:for code refactoringtest:for adding testschore:for maintenance tasks
Commit Message Format
<type>(<scope>): <short description>
<body - explain what and why>
Signed-off-by: <用户名> <邮箱>
重要:
- 必须使用
Signed-off-by而非Co-Authored-By - 禁止添加任何 AI 生成标记
- DCO 验证必须通过
User Request
$ARGUMENTS
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.