スキル一覧に戻る
jahands

auto-commit

by jahands

My AI prompts

19🍴 3📅 2026年1月15日
GitHubで見るManusで実行

SKILL.md


name: auto-commit description: Git commit guidelines for incremental commits. Read this when user asks you to auto commit as you go

Git Commit Guidelines

When making changes to code, commit your changes incrementally as you work.

Commit Format

<type>: <subject>

<body>

Commit Types

  • feat: New feature or functionality
  • fix: Bug fix
  • chore: Maintenance tasks, dependency updates, configuration changes
  • docs: Documentation only changes
  • style: Code style/formatting changes (no functional changes)
  • refactor: Code restructuring without changing functionality
  • test: Adding or modifying tests
  • perf: Performance improvements

Subject Line Rules

  • Maximum 90 characters
  • Start with lowercase
  • No period at the end
  • Use imperative mood ("add" not "adds" or "added")

Body Rules

  • Separate from subject with blank line
  • Wrap at 72 characters
  • Explain what and why, not how
  • Only include when the change requires context

Commit Frequency

  • Commit after each logical unit of change
  • Each commit should represent one coherent change
  • Don't bundle unrelated changes

Examples

Good Examples

feat: add user authentication middleware

Implements JWT-based authentication for API routes.
Includes token validation and refresh logic.
fix: resolve null pointer in user lookup
chore: update dependencies to latest versions

Bad Examples

feat: added new feature to the application that allows users to authenticate using JWT tokens and also fixed some bugs and updated dependencies
fix: Fixed bug.

Key Principles

  • Be concise but descriptive
  • One commit = one logical change
  • Commit message should make sense without looking at the code
  • Skip the body if the subject line is self-explanatory

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

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

+20
LICENSE

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

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

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

0/5
Issue管理

オープンIssueが50未満

+5
言語

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

+5
タグ

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

0/5

レビュー

💬

レビュー機能は近日公開予定です