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.mdsource content
Commit all outstanding changes and push to the current branch.
- Run
(never usegit status
) and-uall
to see all changes, andgit diff
to see recent commit style.git log --oneline -5 - 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.
- Once confirmed, stage the approved files explicitly by name (prefer naming files explicitly over
).git add -A - Write the commit message as confirmed. End with
.Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> - Push to the current branch with
.git push