Skip to content
Development
Skill

/git-commit

Creates git commits following Conventional Commits format with type/scope/subject. Use when user wants to commit changes, create commit, save work, or stage and commit. Enforces project-specific conventions from CLAUDE.md.

From plugin
dev-agent-skills
727 skills
Install
$ npx -y skills add fvadicamo/dev-agent-skills --skill git-commit --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/git-commit

Context preview

The summary Claude sees to decide when to auto-load this skill.

Creates git commits following Conventional Commits format with type/scope/subject. Use when user wants to commit changes, create commit, save work, or stage and commit. Enforces project-specific conventions from CLAUDE.md.

SKILL.md

git-commit.SKILL.md
name: git-commit
description: Creates git commits following Conventional Commits format with type/scope/subject. Use when user wants to commit changes, create commit, save work, or stage and commit. Enforces project-specific conventions from CLAUDE.md.

Git commit

Creates git commits following Conventional Commits format.

Recent project commits

!`git log --oneline -5 2>/dev/null`

Quick start

# 1. Stage changes
git add <files>

# 2. Create commit
git commit -m "type(scope): subject"

Project conventions

  • Scope is **required** (kebab-case): `validation`, `auth`, `cookie-service`, `api`
  • Additional type beyond standard CC: `security` (vulnerability fixes or hardening)
  • HEREDOC for multi-line commits:
git commit -m "$(cat <<'EOF'
feat(validation): add URLValidator with domain whitelist

Implement URLValidator class supporting:
- Domain whitelist enforcement
- Dangerous scheme blocking

Addresses Requirement 31
Part of Task 5.1
EOF
)"

Important rules

  • **ALWAYS** check CLAUDE.md conventions first - use project format if it differs
  • **ALWAYS** include scope in parentheses
  • **ALWAYS** use present tense imperative verb for the subject
  • **NEVER** end subject with a period
  • **NEVER** exceed 50 chars in the subject line
  • **NEVER** use generic messages ("update code", "fix bug", "changes")
  • Group related changes into a single focused commit

References

  • `references/commit_examples.md` - Extended examples by type, good/bad comparisons
Read more
Ships withdev-agent-skills

Agent skills and hooks for development workflows - Git, GitHub, skill authoring, safety guardrails, public-repo privacy, and decision records. These skills are designed for Claude Code, the CLI tool by Anthropic.

Get the whole plugin
Stats
72
Stars
6
Forks
Active
Maintenance
Shell
Language
MIT
License
6d ago
Last commit
9mo ago
Created

Repo: fvadicamo/dev-agent-skills

Other skills on dev-agent-skills.