commit
Installation
SKILL.md
Commit Skill
変更内容を機能ごと・内容ごとに適切にコミットを分割して作成する。
Commit Prefix
以下のprefixを使い分ける:
| prefix | 用途 | 例 |
|---|---|---|
feat |
新機能追加・UI/振る舞いの変更 | feat: ログインダイアログ追加 |
chore |
設定・依存関係・CIなど | chore: eslint設定更新 |
test |
テスト追加・修正 | test: ArticleCard テスト追加 |
docs |
ドキュメント変更 | docs: README更新 |
refactor |
ユーザーから見て振る舞いが変わらない内部改善 | refactor: formatTimeAgo を共通関数に抽出 |
fix |
バグ修正(意図しない動作の修正) | fix: ダイアログが閉じない問題 |
Related skills
More from imaimai17468/imaimai-front-templete
design-guidelines
Comprehensive UI/UX design guidelines covering visual design (typography, color, motion), user experience (cognitive psychology, interaction patterns, mental models), and Sociomedia's Human Interface Guidelines (100 principles). Use when building frontend interfaces or evaluating design decisions.
8coding-guidelines
Provides React/Next.js component guidelines focusing on testability, Server Components, entity/gateway pattern, and directory structure. Use when implementing components, refactoring code, organizing project structure, extracting conditional branches, or ensuring code quality standards.
7