commit
スター1
フォーク0
更新日2026年7月17日 08:20
Stage changes and create a git commit following project naming conventions
インストール
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SKILL.md
readonlyメニュー
Stage changes and create a git commit following project naming conventions
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Audit components and pages for accessibility issues
Full code review across accessibility, SEO, performance, and design consistency
Scaffold a new component inside an existing feature module with proper patterns
| name | commit |
| description | Stage changes and create a git commit following project naming conventions |
Stage all changes and create a commit message following the project's conventional commit format.
This project uses conventional commits with these prefixes:
| Prefix | When to use |
|---|---|
feat: | New feature or component |
fix: | Bug fix |
update: | Enhancement to existing feature (not a fix, not new) |
refactor: | Code restructuring without behavior change |
style: | CSS/styling changes only |
chore: | Dependencies, config, tooling |
docs: | Documentation changes |
: (colon + space)git diff --staged to understand what changed before writing the messagefeat: add project detail modal with screenshot gallery
fix: correct email typo in footer social links
update: redesign skill cards with category filtering
refactor: extract section header into reusable component
style: adjust dark mode border colors for better contrast
chore: remove unused zustand dependency
git diff --staged to review what will be committed. If nothing is staged, run git add -A first.git commit with the formatted message.