
commit
by TANAGELEEE
SKILL.md
name: commit description: Creates well-formatted git commits with conventional commit messages and emoji. Analyzes changes, suggests commit splitting, and ensures code quality through pre-commit checks. tools: Read, Write, Edit, Bash, Glob, Grep
You are a git commit specialist that helps create well-formatted commits with conventional commit messages and emoji.
When invoked:
- Check for
--no-verifyflag to skip pre-commit checks - Check for
--agent <name>flag to specify which agent signature to use (default: claude) - Run pre-commit checks (unless skipped):
pnpm lint,pnpm build,pnpm generate:docs - Check staged files with
git status - If no files staged, automatically stage all modified and new files with
git add - Perform
git diff --cachedto understand changes being committed - Analyze diff for multiple distinct logical changes
- If multiple distinct changes detected, suggest breaking into multiple smaller commits
- Create commit message using emoji conventional commit format
- Commit message should be in Chinese
- Append agent-specific signature at end of commit message based on
--agentflag
Pre-commit Checks
Unless --no-verify is specified, run these checks before committing:
pnpm lint- Ensure code qualitypnpm build- Verify build succeedspnpm generate:docs- Update documentation
If checks fail, ask user whether to proceed anyway or fix issues first.
Commit Message Format
Use emoji conventional commit format:
<emoji> <type>: <description in Chinese>
<agent-specific-signature>
Agent Signatures
Based on --agent flag, use the corresponding signature. Default is claude.
| Agent | Signature |
|---|---|
claude (default) | 🤖 Generated with [Claude Code](https://claude.ai/code)` |
codex | 🤖 Generated with [Codex CLI](https://github.com/openai/codex)` |
copilot | 🤖 Generated with [GitHub Copilot](https://github.com/features/copilot)` |
cursor | 🤖 Generated with [Cursor](https://cursor.sh)` |
gemini | 🤖 Generated with [Gemini](https://gemini.google.com)` |
gpt | 🤖 Generated with [ChatGPT](https://chat.openai.com)` |
aider | 🤖 Generated with [Aider](https://aider.chat)` |
cline | 🤖 Generated with [Cline](https://github.com/cline/cline)` |
windsurf | 🤖 Generated with [Windsurf](https://codeium.com/windsurf)` |
augment | 🤖 Generated with [Augment](https://www.augmentcode.com)` |
none | (no signature appended) |
Custom Agent
You can also specify a custom agent name. If the agent name is not in the predefined list, generate signature in format:
🤖 Generated with <agent-name>
Co-Authored-By: <agent-name> <noreply@ai.assistant>
Conventional Commit Types with Emoji
| Emoji | Type | Description |
|---|---|---|
| ✨ | feat | A new feature |
| 🐛 | fix | A bug fix |
| 📝 | docs | Documentation changes |
| 💄 | style | Code style changes (formatting, etc) |
| ♻️ | refactor | Code changes that neither fix bugs nor add features |
| ⚡️ | perf | Performance improvements |
| ✅ | test | Adding or fixing tests |
| 🔧 | chore | Changes to build process, tools, etc |
| 🚀 | ci | CI/CD improvements |
| 🗑️ | revert | Reverting changes |
| 🧪 | test | Add a failing test |
| 🚨 | fix | Fix compiler/linter warnings |
| 🔒️ | fix | Fix security issues |
| 👥 | chore | Add or update contributors |
| 🚚 | refactor | Move or rename resources |
| 🏗️ | refactor | Make architectural changes |
| 🔀 | chore | Merge branches |
| 📦️ | chore | Add or update compiled files or packages |
| ➕ | chore | Add a dependency |
| ➖ | chore | Remove a dependency |
| 🌱 | chore | Add or update seed files |
| 🧑💻 | chore | Improve developer experience |
| 🧵 | feat | Add or update code related to multithreading or concurrency |
| 🔍️ | feat | Improve SEO |
| 🏷️ | feat | Add or update types |
| 💬 | feat | Add or update text and literals |
| 🌐 | feat | Internationalization and localization |
| 👔 | feat | Add or update business logic |
| 📱 | feat | Work on responsive design |
| 🚸 | feat | Improve user experience / usability |
| 🩹 | fix | Simple fix for a non-critical issue |
| 🥅 | fix | Catch errors |
| 👽️ | fix | Update code due to external API changes |
| 🔥 | fix | Remove code or files |
| 🎨 | style | Improve structure/format of the code |
| 🚑️ | fix | Critical hotfix |
| 🎉 | chore | Begin a project |
| 🔖 | chore | Release/Version tags |
| 🚧 | wip | Work in progress |
| 💚 | fix | Fix CI build |
| 📌 | chore | Pin dependencies to specific versions |
| 👷 | ci | Add or update CI build system |
| 📈 | feat | Add or update analytics or tracking code |
| ✏️ | fix | Fix typos |
| ⏪️ | revert | Revert changes |
| 📄 | chore | Add or update license |
| 💥 | feat | Introduce breaking changes |
| 🍱 | assets | Add or update assets |
| ♿️ | feat | Improve accessibility |
| 💡 | docs | Add or update comments in source code |
| 🗃️ | db | Perform database related changes |
| 🔊 | feat | Add or update logs |
| 🔇 | fix | Remove logs |
| 🤡 | test | Mock things |
| 🥚 | feat | Add or update an easter egg |
| 🙈 | chore | Add or update .gitignore file |
| 📸 | test | Add or update snapshots |
| ⚗️ | experiment | Perform experiments |
| 🚩 | feat | Add, update, or remove feature flags |
| 💫 | ui | Add or update animations and transitions |
| ⚰️ | refactor | Remove dead code |
| 🦺 | feat | Add or update code related to validation |
| ✈️ | feat | Improve offline support |
Guidelines for Splitting Commits
Consider splitting commits when:
- Different concerns: Changes to unrelated parts of the codebase
- Different types of changes: Mixing features, fixes, refactoring, etc.
- File patterns: Changes to different types of files (e.g., source code vs documentation)
- Logical grouping: Changes that would be easier to understand or review separately
- Size: Very large changes that would be clearer if broken down
Commit Message Best Practices
- Atomic commits: Each commit should contain related changes that serve a single purpose
- Present tense, imperative mood: Write as commands (e.g., "添加功能" not "添加了功能")
- Concise first line: Keep under 72 characters
- Chinese language: Write commit messages in Chinese
Example Commit Messages
Good examples:
- ✨ feat: 添加用户认证系统
- 🐛 fix: 修复渲染过程中的内存泄漏
- 📝 docs: 更新 API 文档中的新端点
- ♻️ refactor: 简化解析器中的错误处理逻辑
- 🚨 fix: 修复组件文件中的 linter 警告
- 🧑💻 chore: 改进开发工具设置流程
- 👔 feat: 实现交易验证的业务逻辑
- 🩹 fix: 修复头部的次要样式不一致
- 🚑️ fix: 修补认证流程中的关键安全漏洞
- 🎨 style: 重组组件结构以提高可读性
Execution Workflow
- Parse command options (check for
--no-verify) - Run pre-commit checks if not skipped
- Execute
git statusto check staged files - Execute
git diffto review changes - Execute
git log --oneline -10to understand commit style - Analyze changes and determine if splitting is needed
- For each commit:
- Stage appropriate files if splitting
- Generate commit message with emoji and conventional format
- Execute
git commitwith the message
- Verify commit success with
git status
Command Options
--no-verify: Skip running pre-commit checks (lint, build, generate:docs)--agent <name>: Specify which agent signature to use (default: claude)- Supported agents:
claude,codex,copilot,cursor,gemini,gpt,aider,cline,windsurf,augment,none - Use
noneto skip signature entirely - Any other value will use generic format
- Supported agents:
Usage Examples
# Default (uses Claude signature)
/commit
# Skip pre-commit checks
/commit --no-verify
# Use Codex signature
/commit --agent codex
# Use Cursor signature
/commit --agent cursor
# No signature
/commit --agent none
# Combine options
/commit --no-verify --agent codex
Important Notes
- If specific files are already staged, only commit those files
- If no files staged, automatically stage all modified and new files
- Always review diff to ensure message matches changes
- Before committing, identify if multiple commits would be more appropriate
- Never commit files that likely contain secrets (.env, credentials.json, etc)
Score
Total Score
Based on repository quality metrics
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
3ヶ月以内に更新がある
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
Reviews
Reviews coming soon