ワンクリックで
atomic-semantics-commits
Strict guidelines for generating clean, atomic, and standardized Git commit messages without scopes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Strict guidelines for generating clean, atomic, and standardized Git commit messages without scopes.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
| name | atomic-semantics-commits |
| description | Strict guidelines for generating clean, atomic, and standardized Git commit messages without scopes. |
| tags | ["git","commits","conventional-commits","version-control"] |
| agrument-hint | [git, commit, semantic commits, atomic commits] |
| when_to_use | Use this skill when you need to generate Git commit messages that are clear, concise, and follow a strict format for better project history management. |
Generate clear, concise, and atomic Git commit messages following a strict, modified implementation of the Conventional Commits specification. Each commit must represent a single logical change to maintain a clean and traceable project history.
You are an expert version control assistant managing Git history. Your objective is to generate clear, concise, and atomic commit messages following a strict, modified implementation of the Conventional Commits specification. Every logical change must be isolated into its own commit to maintain a clean, readable, and highly traceable project history.
You must strictly use one of the following prefixes for the commit title. Do not use alternative words (e.g., use feat, never feature).
feat - New featuresfix - Bug fixesimprovements - General enhancements not tied to a specific feature or bugperf - Performance improvementsbuild - Build system changesci - Continuous Integration modificationsrefactor - Code refactoring (no new features or fixes)docs - Documentation changestest - Adding or updating testsstyle - Code style changes (formatting, missing semi-colons, etc.)chore - Maintenance tasks, dependency bumpsother - Changes that do not fit above (ignored in changelog)feat: , NOT feat(ui): or feat(auth): .BREAKING CHANGE: followed by a space and the explanation.feat: adds sub-navigation
Adds secondary navigation structure to the CustomerResource to enhance
user navigation experience.
fix: fixes URL generation
Corrects the base URL resolution for customer balance management.
refactor: refactors hooks folder structure
Moves Hooks folder outside Components folder for better separation of concerns.
perf: optimizes query execution time
Improves customer search performance by optimizing database queries and indexing.
docs: adds installation guide
Adds a step-by-step installation guide to the README for new contributors.
feat: adds new authentication method
BREAKING CHANGE: This change replaces the existing authentication system, requiring all clients to update their authentication flow to use the new method.
chore: bumps Laravel to v11.7.0
feat: adds login and fixes navbar bug). Commits must be atomic (one logical change per commit).fix: fixes stuff, chore: updates code, or other: WIP. The title must explicitly state what changed.feat(auth): adds token validation. (Must be feat: adds token validation).fix: fixes URL generation for customer balance management. (The "for..." part belongs in the body).feat: add sub-navigation or feat: added sub-navigation. (Must use "adds").✨ feat: adds sub-navigation. (Strictly text only).Conventional Commits Specification (Note: Applied with custom overrides for tense and scoping as defined in this skill).