Back to list
asuender

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

  1. Run git status to see modified and untracked files
  2. Run git diff to review unstaged changes
  3. Stage relevant files with git add <files> or git add .
  4. Run git diff --staged to confirm staged changes
  5. 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

TypePurpose
featNew feature
fixBug fix
docsDocumentation only
styleFormatting, no code change
refactorCode change that neither fixes a bug nor adds a feature
perfPerformance improvement
testAdding or correcting tests
choreMaintenance 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>

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