What problem does it solve?
This Skill standardizes and executes Git operations in a safe, repeatable way so users and agents avoid ad-hoc commands, inconsistent commit messages, and missing human-readable change summaries. It reduces risk by validating repositories, resolving the correct working directory, and gating destructive actions with confirmations.
Core Features & Use Cases
- Safe Execution: Runs Git commands with directory resolution and validation, always using git -C to target the correct repository.
- Standardized Commits: Prompts for commit messages and optional ticket IDs to produce consistent "{TICKET} - {MESSAGE}" commits.
- Composite Shortcut: The enviar flow runs two bash scripts to stage changes, generate a markdown summary of diffs, commit, amend the summary with the commit hash, and push in two confirmations.
- Use Cases: daily developer commits with automated changelogs, disciplined push workflows for teams, and quick rollbacks supported by structured summaries.
Quick Start
Run the git-ops skill to stage changes, generate a human-readable git-ops summary file, confirm the standardized commit message (optionally with a ticket), and push the update to the remote.