What problem does it solve? The heredoc syntax git commit -m "$(cat <<'EOF'...)" fails in this environment, breaking multi-line commit messages. This Skill provides a reliable workaround by writing commit messages to a temporary file and committing with git commit -F. ## Core Features & Use Cases - Heredoc Workaround: Writes commit messages to a temporary file with the Write tool, then commits via git commit -F commit-msg.txt and cleans up the file. - Commit Conventions: Enforces Spanish-language, imperative-style messages ("Añadir X", "Corregir Y") with a Claude co-author trailer. - Safe Git Practices: Pushes immediately after each commit, favors frequent small commits, and forbids git add -A, --amend, and --no-verify. - Use Case: When finishing a feature change, stage specific files by name, write the Spanish commit message to a file, commit with -F, and push in one autonomous flow. ## Quick Start Commit my staged changes with a descriptive Spanish message and push them immediately using the file-based commit workflow.