Awesome-omni-skill submit

Commit all changes and push to the current branch

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/submit" ~/.claude/skills/diegosouzapw-awesome-omni-skill-submit && rm -rf "$T"
manifest: skills/cli-automation/submit/SKILL.md
source content

Commit all outstanding changes and push to the current branch.

  1. Run
    git status
    (never use
    -uall
    ) and
    git diff
    to see all changes, and
    git log --oneline -5
    to see recent commit style.
  2. List all files that will be staged (modified, added, deleted, untracked) and the proposed commit message. Ask the user for confirmation using AskUserQuestion before proceeding. Do not stage files that contain secrets.
  3. Once confirmed, stage the approved files explicitly by name (prefer naming files explicitly over
    git add -A
    ).
  4. Write the commit message as confirmed. End with
    Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
    .
  5. Push to the current branch with
    git push
    .