| name | creating-commit |
| description | Creates context-aware git commits with smart pre-commit checks, submodule support, and conventional commit message generation. Use when user requests to commit changes, stage and commit, check in code, save work, save changes, push my code, finalize changes, add to git, create commits, run /commit command, or mentions "git commit", "commit message", "conventional commits", "stage files", "git add", or needs help with commits. |
| model | haiku |
⚠️ CRITICAL CONSTRAINTS
No Claude Code Footer Policy
YOU MUST NEVER add Claude Code attribution to git commits.
- ❌ NO "🤖 Generated with [Claude Code]" in commit messages
- ❌ NO "Co-Authored-By: Claude noreply@anthropic.com" in commit messages
- ❌ NO Claude Code attribution, footer, or branding of any kind
Git commits are permanent project history and must remain clean and professional.
Git Commit Workflow
Execute intelligent git commit workflows with automatic repository detection, smart pre-commit checks, and conventional commit message generation.
Usage
This skill is invoked when:
- User runs
/commit command
- User requests to commit changes
- User asks to create a git commit
How It Works
This skill handles the complete commit workflow:
- Repository Detection - Automatically detects root repository and submodules
- Change Analysis - Identifies modified files and determines scope
- Pre-commit Checks - Runs appropriate checks based on file types
- Commit Message Generation - Creates conventional commit messages with emojis
- Submodule Handling - Prompts to update submodule references in root repository
Supported Arguments
Parse arguments from user input:
- No arguments: Interactive mode (auto-detect changes)
<scope>: Direct commit to specific repository (root, submodule-name)
--no-verify: Skip all pre-commit checks
--full-verify: Run full builds (backend + frontend)
<scope> --no-verify: Combine scope with flags
Commit Workflow Steps
Step 1: Parse Arguments
Extract scope and flags from user input:
SCOPE=""
FLAG=""
Step 2: Detect Repositories with Changes
Find monorepo root and detect all repositories with uncommitted changes:
if SUPERPROJECT=$(git rev-parse --show-superproject-working-tree 2>/dev/null) && [ -n "$SUPERPROJECT" ]; then
MONOREPO_ROOT="$SUPERPROJECT"
else
MONOREPO_ROOT=$(git rev-parse --show-toplevel)
fi
REPOS_WITH_CHANGES=()
if git -C "$MONOREPO_ROOT" status --porcelain | grep -q .; then
REPOS_WITH_CHANGES+=("root")
fi
git -C "$MONOREPO_ROOT" submodule foreach --quiet 'echo $name' | while read -r submodule; do
SUBMODULE_PATH="$MONOREPO_ROOT/$submodule"
if git -C "$SUBMODULE_PATH" status --porcelain | grep -q .; then
REPOS_WITH_CHANGES+=("$submodule")
fi
done
Step 3: Select Target Repository
If no scope specified, select repository interactively or automatically:
if [ ${#REPOS_WITH_CHANGES[@]} -eq 1 ]; then
SCOPE="${REPOS_WITH_CHANGES[0]}"
echo "ℹ️ Auto-selected: $SCOPE (only repository with changes)"
elif [ ${#REPOS_WITH_CHANGES[@]} -gt 1 ]; then
echo "Found changes in:"
for i in "${!REPOS_WITH_CHANGES[@]}"; do
REPO="${REPOS_WITH_CHANGES[$i]}"
REPO_PATH=$([ "$REPO" = "root" ] && echo "$MONOREPO_ROOT" || echo "$MONOREPO_ROOT/$REPO")
CHANGE_COUNT=$(git -C "$REPO_PATH" status --porcelain | wc -l | tr -d ' ')
echo "$((i+1)). $REPO ($CHANGE_COUNT files modified)"
done
fi
Step 4: Resolve Repository Path
Convert scope to absolute path:
if [ "$SCOPE" = "root" ]; then
REPO_PATH="$MONOREPO_ROOT"
else
REPO_PATH="$MONOREPO_ROOT/$SCOPE"
fi
if [ ! -d "$REPO_PATH/.git" ]; then
echo "❌ Error: Not a valid git repository: $REPO_PATH" >&2
exit 1
fi
Step 5: Check Branch Protection
Validate not on protected branch (main branch for root only):
CURRENT_BRANCH=$(git -C "$REPO_PATH" rev-parse --abbrev-ref HEAD)
if [ "$CURRENT_BRANCH" = "main" ] && [ "$SCOPE" = "root" ]; then
echo "❌ Cannot commit to protected branch: main" >&2
echo "" >&2
echo "The main branch requires pull requests." >&2
echo "Please create a feature branch first:" >&2
echo "" >&2
echo " git checkout -b feature/your-feature-name" >&2
echo "" >&2
exit 1
fi
Step 6: Stage Files
Stage all unstaged changes or use already-staged files:
STAGED_FILES=$(git -C "$REPO_PATH" diff --cached --name-only)
if [ -z "$STAGED_FILES" ]; then
echo "Staging all changes..."
git -C "$REPO_PATH" add -A
STAGED_FILES=$(git -C "$REPO_PATH" diff --cached --name-only)
if [ -z "$STAGED_FILES" ]; then
echo "❌ No changes to commit" >&2
exit 1
fi
else
echo "ℹ️ Using already staged files"
fi
git -C "$REPO_PATH" status --short
Step 7: Run Pre-commit Checks
Execute pre-commit checks based on changed file types and flags:
if [ "$FLAG" = "--no-verify" ]; then
echo "⚠️ Skipping pre-commit checks (--no-verify flag)"
elif [ "$SCOPE" = "plan" ] || [[ "$SCOPE" == *"doc"* ]]; then
echo "ℹ️ Skipping checks for documentation repository"
elif [ "$FLAG" = "--full-verify" ]; then
echo "Running full build verification..."
if [ -d "$MONOREPO_ROOT/backend" ]; then
echo "Building backend..."
(cd "$MONOREPO_ROOT/backend" && ./gradlew build test) || {
echo "❌ Backend build failed" >&2
exit 1
}
fi
if [ -d "$MONOREPO_ROOT/frontend" ]; then
echo "Building frontend..."
(cd "$MONOREPO_ROOT/frontend" && npm run build) || {
echo >&2
1
}
CHANGED_FILES=$(git -C diff --cached --name-only)
| grep -q ;
[ -f ];
( && ./gradlew detekt) || {
>&2
1
}
| grep -qE ;
[ -f ];
( && npx tsc --noEmit) || {
>&2
1
}
| grep -q ;
| grep -q ;
[ -f ];
( && cargo check) || {
>&2
1
}
Step 8: Generate Commit Message
Analyze changes and create conventional commit message:
DIFF_STAT=$(git -C "$REPO_PATH" diff --cached --stat)
if echo "$DIFF_STAT" | grep -q "test\|spec"; then
COMMIT_TYPE="test"
EMOJI="✅"
elif echo "$DIFF_STAT" | grep -q "\.md\|README\|docs/"; then
COMMIT_TYPE="docs"
EMOJI="📝"
elif echo "$DIFF_STAT" | grep -qE "build\.gradle|package\.json|pom\.xml|Cargo\.toml"; then
COMMIT_TYPE="build"
EMOJI="🏗️"
elif echo "$DIFF_STAT" | grep -qE "\.github|\.gitlab|Jenkinsfile|\.circleci"; then
COMMIT_TYPE="ci"
EMOJI="👷"
elif echo "$DIFF_STAT" | grep -q "refactor"; then
COMMIT_TYPE="refactor"
EMOJI="♻️"
elif echo "$DIFF_STAT" | grep -q "fix\|bug"; then
COMMIT_TYPE=
EMOJI=
COMMIT_TYPE=
EMOJI=
CHANGED_FILES_LIST=$(git -C diff --cached --name-only)
ADDITIONS=$(git -C diff --cached --numstat | awk )
DELETIONS=$(git -C diff --cached --numstat | awk )
COMMIT_SUBJECT=
COMMIT_BODY=
Step 9: Create Commit
Execute git commit with the approved message:
git -C "$REPO_PATH" commit -m "$COMMIT_SUBJECT" -m "$COMMIT_BODY" || {
echo "❌ Commit failed" >&2
exit 1
}
COMMIT_HASH=$(git -C "$REPO_PATH" rev-parse --short HEAD)
echo "✅ Commit created: $COMMIT_HASH"
echo ""
git -C "$REPO_PATH" log -1 --oneline
Step 10: Handle Submodule References (if applicable)
If committed to a submodule, prompt to update root repository:
if [ "$SCOPE" != "root" ]; then
SUBMODULE_REF_CHANGED=$(git -C "$MONOREPO_ROOT" status --porcelain | grep "^ M $SCOPE$")
if [ -n "$SUBMODULE_REF_CHANGED" ]; then
echo ""
echo "ℹ️ Submodule reference changed in root repository"
echo ""
fi
fi
Commit Type Detection
The skill automatically detects commit types based on file patterns:
| Pattern | Type | Emoji |
|---|
| test/spec files | test | ✅ |
| .md/README/docs/ | docs | 📝 |
| build files (package.json, Cargo.toml, etc.) | build | 🏗️ |
| CI/CD files (.github, Jenkinsfile) | ci | 👷 |
| Files with "refactor" | refactor | ♻️ |
| Files with "fix" or "bug" | fix | 🐛 |
| Default | feat | ✨ |
Pre-commit Check Matrix
| File Type | Check Command | When |
|---|
*.kt | ./gradlew detekt | Unless --no-verify |
*.ts, *.tsx | npx tsc --noEmit | Unless --no-verify |
*.py | Configurable linting | Unless --no-verify |
*.rs | cargo check | Unless --no-verify |
Documentation (*.md) | Skip checks | Always |
| Full verify flag | ./gradlew build test && npm run build | When --full-verify |
Important Notes
- Multi-repo/Submodule Support: Automatically detects and handles monorepo structures
- Branch Protection: Prevents commits to main branch in root repository
- Smart Checks: Only runs checks relevant to changed file types
- No External Dependencies: All logic uses git commands and Bash tool
- Clean Commit History: No Claude Code attribution in commit messages
Supporting Documentation
For detailed information, see:
- WORKFLOW.md - Step-by-step commit process including repository detection, pre-commit checks, and submodule handling
- EXAMPLES.md - Real-world commit scenarios covering features, bug fixes, submodules, and verification modes
- TROUBLESHOOTING.md - Common issues and solutions for pre-commit failures and submodule conflicts