Back to list
amaiya

commit

by amaiya

A lightweight Claude Code–inspired coding and automation assistant that supports both local and cloud LLMs.

5🍴 0📅 Jan 22, 2026

SKILL.md


name: commit description: Create a well-formatted git commit following best practices

Git Commit Workflow

Follow these steps to create a high-quality commit:

1. Review Changes

  • Use git_status to see what files have changed
  • Use git_diff to review the actual changes
  • Ensure you understand what's being committed

2. Write Commit Message

Create a commit message that:

  • Starts with a concise summary (50 chars or less)
  • Uses imperative mood ("Add feature" not "Added feature")
  • Includes details in the body if needed
  • References any relevant issue numbers

3. Stage and Commit

  • Stage only the relevant files (avoid staging unrelated changes)
  • Use run_shell to execute: git add <files>
  • Use run_shell to execute: git commit -m "Your message"

4. Verify

  • Use git_log to confirm the commit was created correctly
  • Use git_diff with staged flag to ensure nothing unexpected was committed

Format Example

Add user authentication feature

- Implement JWT token generation
- Add login/logout endpoints
- Update user model with password hashing

Fixes #123

Score

Total Score

70/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon