Our review
Commits changes to a Git repository with a conventional commit message after reviewing and staging changes.
Strengths
- Enforces conventional commit format (feat, fix, chore, etc.)
- Reviews changes before committing
- Stages all changes automatically
- Generates descriptive messages following standards
Limitations
- Only performs 'git add .' (no selective staging)
- Requires optional message input or AI-generated message
- Does not support partial commits or interactive rebases
When you have made changes and want to commit them following conventional commit standards.
When you need to commit only specific changes or use a non-conventional message.
Security analysis
SafeThe skill only uses git commands to stage and commit changes. No destructive or exfiltrating actions are present.
No concerns found
Examples
Commit my recent changes with a descriptive conventional commit message.Please review my changes and commit them following conventional commit format with type feat.name: git-cm description: Commit changes to git with a descriptive conventional commit message. Use when ready to commit staged or unstaged changes. argument-hint: "[optional commit message]" disable-model-invocation: true allowed-tools: Bash(git:*)
Git Commit
Commit changes with a conventional commit message.
-
Check the current git status to understand what has changed.
- Command:
git status
- Command:
-
View the diff if necessary to understand the changes better.
- Command:
git diff --stagedorgit diff
- Command:
-
Add all changes to the staging area (unless specific files are requested).
- Command:
git add .
- Command:
-
Commit the changes with a descriptive and conventional commit message.
- Command:
git commit -m "<type>: <subject>" - Ensure the message follows conventional commit standards (e.g., feat, fix, chore, docs, refactor).
- Command:
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.