← Back to list

create-commit
by segersniels
⭐ 0🍴 0📅 Jan 19, 2026
SKILL.md
name: create-commit description: Create a commit. Use whenever a user explicitly asks to commit changes. metadata: short-description: Create a commit
Create Commit
Goal
Create a commit with a clear message and scope following the guidelines below.
Process
- Look at the current staged and unstaged changes with
git statusandgit diff - Stage changes if needed using
git add . - Create focused, atomic commits with clear messages
- Refrain from adding one big commit, instead create multiple smaller atomic commits when it makes sense to do so
Scope Guidelines
Prefer feature/change-focused scopes over package names:
- First choice: Feature or domain names that describe what's being changed
- Fallback: Package names if no clear feature scope exists
- Always use:
deps/deps-devfor dependency updates - Infrastructure: Generic scopes like
ci,docker,scriptsare fine
Rules
- Use conventional commit format:
type(scope): description - Keep title under 100 characters
- Use
--no-verifyfor .md files - Never use heredoc or cat for commit messages
- Avoid ANSI codes in commit messages
- Never adjust code when running this, only create commits
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon