Awesome-omni-skill commit
Create a git commit with a well-formatted message. Use after completing changes that should be committed.
install
source · Clone the upstream repo
git clone https://github.com/diegosouzapw/awesome-omni-skill
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/cli-automation/commit-milosptr" ~/.claude/skills/diegosouzapw-awesome-omni-skill-commit-c19d38 && rm -rf "$T"
manifest:
skills/cli-automation/commit-milosptr/SKILL.mdsafety · automated scan (low risk)
This is a pattern-based risk scan, not a security review. Our crawler flagged:
- references .env files
Always read a skill's source content before installing. Patterns alone don't mean the skill is malicious — but they warrant attention.
source content
Git Commit
Create a git commit for the current changes.
Commit Message Format
Use conventional commit style:
<type>: <short description> <optional body with more details> Co-Authored-By: Claude <noreply@anthropic.com>
Types
: New featurefeat
: Bug fixfix
: Code refactoringrefactor
: Formatting, missing semicolons, etc.style
: Documentation changesdocs
: Adding or updating teststest
: Maintenance taskschore
Examples
feat: add warehouse status recalculation endpoint fix: correct working day calculation for early morning hours refactor: extract invoice creation logic to service class test: add feature tests for OrderController
Steps
- Run
to see all changesgit status - Run
to review staged and unstaged changesgit diff - Run
to see recent commit stylegit log --oneline -5 - Stage relevant files with
(prefer specific files overgit add <files>
)git add . - Create commit with descriptive message using HEREDOC format:
git commit -m "$(cat <<'EOF' <type>: <description> <optional details> Co-Authored-By: Claude <noreply@anthropic.com> EOF )"
- Run
to verify commit succeededgit status
Important Notes
- Do NOT commit
or other sensitive files.env - Do NOT use
unless explicitly requested (creates new commits)--amend - Do NOT use
unless explicitly requested--no-verify - Do NOT push unless explicitly requested
- If pre-commit hooks fail, fix issues and create NEW commit
User's hint for this commit
$ARGUMENTS