git-commit

IMPORTANT: This skill MUST ALWAYS be applied when creating git commits, even if the user does not explicitly request it.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "git-commit" with this command: npx skills add totto2727-dotfiles/agents/totto2727-dotfiles-agents-git-commit

Git Commit Command

IMPORTANT: This skill MUST ALWAYS be applied when creating git commits, even if the user does not explicitly request it.

This skill analyzes git changes and creates appropriately granular commits with Conventional Commits format messages. It should be automatically invoked whenever you need to create commits, stage files, or handle git changes.

Workflow

This skill must be applied automatically whenever you create git commits, regardless of user instructions.

When creating commits:

Gather Information:

git status git diff --staged git diff git log --oneline -10

Analyze Changes:

  • Review staged and unstaged changes

  • Identify logically distinct change groups

  • Detect language pattern from recent commits (git log )

Create Granular Commits:

  • Group related changes logically

  • Create separate commits for each group

  • Use Conventional Commits format

Requirements

  1. GPG Signing (CRITICAL)

Commits without GPG signatures are strictly prohibited. Never use --no-gpg-sign or disable signing.

If a GPG signing error or hang occurs:

  • Stop all work immediately

  • Report the error message and current state

  • Do not attempt workarounds or unsigned commits

  1. Granular Commits

Create separate commits for logically distinct changes. Do not combine unrelated modifications into a single commit.

  1. Conventional Commits Format

Use format: type(scope): description

Types:

  • feat : New feature

  • fix : Bug fix

  • docs : Documentation changes

  • style : Code style changes (formatting, missing semicolons, etc.)

  • refactor : Code refactoring

  • test : Adding or updating tests

  • chore : Maintenance tasks

  • build : Build system changes

  • ci : CI/CD changes

  • perf : Performance improvements

Scope: Optional, indicates what is being modified (e.g., auth , cart , payment )

Description: Concise description in present tense, lowercase (except proper nouns)

  1. Language Detection

Analyze recent commit messages from git log --oneline -10 to determine the language pattern used in the repository. Follow the same language for new commit messages.

  1. Direct File Modification Prohibited

Do not use file editing tools (e.g., write , search_replace ) to modify files directly. Always use git commands to stage and commit changes:

  • Use git add <file> or git add -p for staging

  • Use git apply --cached when staging specific hunks from diffs

  • Use git commit for creating commits

  1. Process
  • Analyze all changes (staged and unstaged)

  • Group related changes logically

  • Stage and commit each group separately using git commands

  • Provide clear explanations for each commit

Tips

  • Use git diff to see changes

  • Use git apply --cached <patch-file> to stage only necessary changes

  • If git apply --cached fails, run git diff again and recreate the diff file

  • Use git add -p for interactive staging when needed

  • Review each commit message before finalizing

Examples

Example 1: Multiple unrelated changes

Changes detected:

  • Added new authentication endpoint
  • Fixed cart calculation bug
  • Updated README documentation

Creates 3 separate commits:

  1. feat(auth): add login endpoint
  2. fix(cart): correct price calculation
  3. docs: update README with setup instructions

Example 2: Related changes grouped together

Changes detected:

  • Added product search function
  • Added product search tests
  • Updated product search documentation

Creates 1 commit: feat(product): implement search functionality

Example 3: Language detection

Recent commits show Japanese messages:

  • feat: add authentication feature
  • fix: fix cart calculation bug

Follows detected pattern:

  • feat: add product search functionality

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

git-operations-rules

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

csv-analyzing

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

moonbit-docs

No summary provided by upstream source.

Repository SourceNeeds Review