Create well-formatted git commits with conventional commit messages and emoji. Use when user asks to commit changes, save work, or after completing a task that should be committed.
Create well-formatted commits with conventional commit messages and emoji prefixes.
git status to see changesgit diff to understand changesgit log --oneline -5 for commit style referencegit add<emoji> <type>: <description>
[optional body]
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
| Type | Emoji | When to Use |
|------|-------|-------------|
| feat: | ✨ | New feature |
| fix: | 🐛 | Bug fix |
| docs: | 📝 | Documentation |
| refactor: | ♻️ | Code refactoring |
| chore: | 🔧 | Build/tooling |
| perf: | ⚡️ | Performance |
| test: | ✅ | Tests |
| style: | 🎨 | Code formatting |
| ci: | 🚀 | CI/CD changes |
| fix: | 🔒️ | Security fix |
| chore: | 🔖 | Release/version tag |
Consider multiple commits when changes involve:
git add src/components/NewFeature.tsx src/services/feature.ts
git commit -m "$(cat <<'COMMIT'
✨ feat: add user authentication system
Implements login, logout, and session management.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
COMMIT
)"
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer