← Back to list

committing-code
by asuender
Personal repo hosting configs for Ghostty, tmux, and so on!
⭐ 0🍴 0📅 Jan 23, 2026
SKILL.md
name: committing-code description: Generates clear commit messages. Use when tasked to commit any code. context: fork allowed-tools:
- Bash(git diff:*)
- Bash(git diff)
- Bash(git status:*)
- Bash(git status)
- Bash(git commit:*)
- Bash(git log:*)
- Bash(git add:*)
- Bash(git add *)
- Read
Instructions
- Run
git statusto see modified and untracked files - Run
git diffto review unstaged changes - Stage relevant files with
git add <files>orgit add . - Run
git diff --stagedto confirm staged changes - Create the commit following the conventional format below
Note: use all git commands without the -C <dir> argument!
Conventional Commit Format
<type>[optional scope]: <description>
[optional body]
[optional footer(s)]
Types
| Type | Purpose |
|---|---|
feat | New feature |
fix | Bug fix |
docs | Documentation only |
style | Formatting, no code change |
refactor | Code change that neither fixes a bug nor adds a feature |
perf | Performance improvement |
test | Adding or correcting tests |
chore | Maintenance tasks |
Breaking Changes
Indicate breaking changes with an exclamation mark after the type:
feat!: remove deprecated API endpoint
Or use a footer:
feat: redesign user authentication
BREAKING CHANGE: JWT tokens now expire after 1 hour
Rules
- Keep subject line under 72 characters
- Use imperative mood: "add feature" not "added feature"
- Do not end subject with a period
- Separate subject from body with a blank line
- Use body to explain what and why, not how
Example
feat(auth): add OAuth2 login support
Implement OAuth2 authentication flow with support for Google and GitHub
providers. This replaces the legacy session-based authentication.
Closes #123
Co-Authored-By: Claude <noreply@anthropic.com>
Footer
Always include at the end:
Co-Authored-By: Claude <noreply@anthropic.com>
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