With AI
Use gitmoji with Claude Code
1 min read
•188 wordsInstall our gitmoji plugin for Claude Code to generate commits following the convention.
Install the Plugin
Add the onRuntime marketplace and install the plugin:
# Add the onRuntime marketplace
/plugin marketplace add https://onruntime.com/plugins
# Install the gitmoji plugin
/plugin install gitmoji@onruntime
Or install directly from the menu:
- Run
/pluginin Claude Code - Go to Discover tab
- Add marketplace:
https://onruntime.com/plugins - Search for "gitmoji" and install
Usage
Run the /commit command to create a commit:
/commit
/commit fix the login bug
Claude Code will analyze your changes and create a commit following the gitmoji convention.
Plugin Command
The /commit command automatically fetches your git status and diff to generate the appropriate commit message.
Alternative: CLAUDE.md
If you prefer not to install the plugin, add this to your project's CLAUDE.md:
## Commit Convention
Use gitmoji conventional commits:
\`\`\`
<gitmoji> <type> <description>
\`\`\`
Types: add, fix, improve, update, remove, refactor, rename, move, upgrade, downgrade
Rules:
- Write in lowercase
- Use imperative mood ("add" not "added")
- One logical change per commit
Last updated on 12/31/2025