Agent Skills: commit-and-push

Create a git commit and push

UncategorizedID: dparedesi/agent-global-skills/commit-and-push

Install this agent skill to your local

pnpm dlx add-skill https://github.com/dparedesi/agent-global-skills/tree/HEAD/commit-and-push

Skill Files

Browse the full folder contents for commit-and-push.

Download Skill

Loading file tree…

commit-and-push/SKILL.md

Skill Metadata

Name
commit-and-push
Description
Create a git commit and push

Context

  • Current git status: !git status
  • Current git diff (staged and unstaged changes): !git diff HEAD
  • Current branch: !git branch --show-current
  • Recent commits: !git log --oneline -10

Your task

  1. Analyze the diff in depth - understand what changed and why
  2. Create a single commit with a clear, descriptive message
  3. Push to origin
  4. If on a feature branch: create a PR using gh pr create
  5. If on main: just push (no PR needed)