Our review
Creates a well-structured Git commit with a conventional commit message and DCO sign-off.
Strengths
- Automatically formats commit messages in conventional commit style
- Analyzes staged changes to suggest type and scope
- Ensures DCO compliance by adding a Signed-off-by line
Limitations
- Requires files to be staged or modified
- May not capture deep business context
- Enforces a strict format that might not fit all projects
Use this skill when you need to create a commit with a descriptive, convention-compliant message.
Do not use this skill when you want a custom, non-conventional commit message or when you need to skip DCO certification.
Security analysis
SafeThe skill uses Bash to run git status and git diff, which is standard and non-destructive for commit analysis. No exfiltration or malicious commands.
No concerns found
Examples
Commit my staged changes with a suitable message./commit Add user authentication featureI've made some changes, please commit them with a conventional commit message.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.