Back to list
BerryKuipers

validate-git-hygiene

by BerryKuipers

Universal Claude Code configuration: agents, skills, workflows, and SessionStart hooks for consistent development across projects

5🍴 2📅 Jan 24, 2026

SKILL.md


name: validate-git-hygiene description: Validate git commit messages, branch naming conventions, and repository hygiene. Returns structured output with validation results for commit format (conventional commits), branch naming, and best practices. Used for quality gates and git workflow validation.

Validate Git Hygiene

Validates git repository hygiene including commit messages, branch names, and best practices.

Usage

This skill validates git practices and returns structured results.

Checks Performed

  1. Commit Message Format

    • Conventional Commits format: type(scope): description
    • Valid types: feat, fix, docs, style, refactor, test, chore
    • Character limits (72 chars for title)
  2. Branch Naming

    • Pattern validation (feat/, fix/, chore/*, etc.)
    • No invalid characters
    • Descriptive naming
  3. Repository Hygiene

    • No uncommitted changes in working directory
    • No untracked sensitive files (.env, credentials)
    • Branch up to date with remote

Output Format

Success (All Checks Pass)

{
  "status": "success",
  "git": {
    "commits": {
      "valid": 5,
      "invalid": 0,
      "issues": []
    },
    "branch": {
      "name": "feat/add-character-system",
      "valid": true,
      "pattern": "feat/*"
    },
    "hygiene": {
      "workingDirectory": "clean",
      "untrackedSensitive": []
    }
  },
  "canProceed": true
}

Issues Found

{
  "status": "warning",
  "git": {
    "commits": {
      "valid": 3,
      "invalid": 2,
      "issues": [
        {
          "commit": "abc123",
          "message": "fixed bug",
          "problem": "Missing type prefix (feat/fix/etc)"
        }
      ]
    },
    "branch": {
      "name": "my-feature",
      "valid": false,
      "pattern": null,
      "problem": "Should follow pattern: feat/fix/chore/etc"
    },
    "hygiene": {
      "workingDirectory": "dirty",
      "untrackedSensitive": [".env.local"]
    }
  },
  "canProceed": false,
  "details": "2 commit message issues and 1 sensitive file found"
}

When to Use

  • Pre-commit validation
  • Branch creation workflows
  • Conductor Phase 2/4 (Implementation/PR creation)
  • Git workflow enforcement
  • Code review preparation

Requirements

  • Git repository initialized
  • Git command-line tools available
  • Commits exist on current branch (for commit validation)

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

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

+20
LICENSE

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

0/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