← Back to list

commit
by markahesketh
A collection of dotfiles and configuration from my dev environment
⭐ 0🍴 2📅 Jan 23, 2026
SKILL.md
name: commit description: >- Create well-formatted commits with conventional commit messages. Use when: creating commits, staging changes, running git commit, or when asked to commit code. Triggers automatically for any git commit workflow.
Commit Skill
Create atomic, well-formatted git commits using conventional commit conventions.
Workflow
- Run
git statusto check staged files - If no files staged, run
git add .to stage all changes - Run
git diff --stagedto analyze the changes - If changes touch multiple unrelated concerns, split into separate commits
- For each commit, create a message following the format rules below
Commit Message Format
Single line only, max 72 characters:
<type>: <description>
Types:
feat: New featurefix: Bug fixdocs: Documentation changesstyle: Code style changes (formatting, etc)refactor: Code changes that neither fix bugs nor add featuresperf: Performance improvementstest: Adding or fixing testschore: Build process, tools, dependencies
Rules:
- Imperative mood ("add feature" not "added feature")
- Lowercase after the colon
- No period at the end
- No extended body or description text
Splitting Commits
Split when changes involve:
- Different concerns or unrelated parts of codebase
- Different types of changes (features mixed with fixes)
- Different file types (source vs documentation)
- Large changes that would be clearer separated
Each commit should be atomic and serve a single purpose.
Critical: No AI Attribution
- NEVER add
Co-Authored-By:lines - NEVER mention Claude, AI, LLM, or any assistant
- NEVER add "Generated with" or similar footers
- Commits must appear as written by a human developer
Examples
Good:
feat: add user authentication systemfix: resolve memory leak in renderingdocs: update API endpoint documentationrefactor: simplify parser error handlingchore: update package dependencies
Splitting example:
feat: add new API type definitionsdocs: update documentation for new typestest: add unit tests for new endpoints
Score
Total Score
65/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
1ヶ月以内に更新
+10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon





