← ClaudeAtlas

commitlisted

Create a git commit using Conventional Commits format with ticket ID.
ghozimahdi/gm-aiagent-plugins · ★ 0 · Code & Development · score 70
Install: claude install-skill ghozimahdi/gm-aiagent-plugins
Use the current user request as this skill's input. In Claude Code invoke it as `/ufil:commit`; in Codex invoke it as `$ufil:commit`. Resolve `UFIL_ROOT` to the plugin root containing this skill; Claude Code may provide `CLAUDE_PLUGIN_ROOT`, while Codex can resolve it from the installed skill path. Create a git commit using **Conventional Commits** format with ticket ID. Arguments: <requested arguments> (optional commit message or scope hint) ## Commit Format ``` <type> (TICKET-ID): <description> [optional body] ``` ### Types | Type | When to use | | ------------ | -------------------------------------------------------- | | `feat` | New feature or capability | | `fix` | Bug fix | | `refactor` | Code restructure without behavior change | | `chore` | Maintenance (deps update, config, CI, scripts) | | `docs` | Documentation only | | `style` | Formatting, whitespace, semicolons (no logic change) | | `test` | Adding or updating tests | | `perf` | Performance improvement | | `ci` | CI/CD pipeline changes | | `build` | Build system or external dependency changes | | `revert` | Revert a previous commit