commit

star 121

Stage, commit, create PR, and merge to main. Use for the standard commit-PR-merge cycle.

maxwell2732 By maxwell2732 schedule Updated 2/21/2026

name: commit description: Stage, commit, create PR, and merge to main. Use for the standard commit-PR-merge cycle. argument-hint: "[optional: commit message]" allowed-tools: ["Bash", "Read", "Glob"]

Commit, PR, and Merge

Stage changes, commit with a descriptive message, create a PR, and merge to main.

Steps

  1. Check current state:
git status
git diff --stat
git log --oneline -5
  1. Create a branch from the current state:
git checkout -b <short-descriptive-branch-name>
  1. Stage files — add specific files (never use git add -A):
git add <file1> <file2> ...

Do NOT stage .claude/settings.local.json or any files containing secrets.

  1. Commit with a descriptive message:

If $ARGUMENTS is provided, use it as the commit message. Otherwise, analyze the staged changes and write a message that explains why, not just what.

git commit -m "$(cat <<'EOF'
<commit message here>
EOF
)"
  1. Push and create PR:
git push -u origin <branch-name>
gh pr create --title "<short title>" --body "$(cat <<'EOF'
## Summary
<1-3 bullet points>

## Test plan
<checklist>

🤖 Generated with [Claude Code](https://claude.com/claude-code)
EOF
)"
  1. Merge and clean up:
gh pr merge <pr-number> --merge --delete-branch
git checkout main
git pull
  1. Report the PR URL and what was merged.

Important

  • Always create a NEW branch — never commit directly to main
  • Exclude settings.local.json and sensitive files from staging
  • Use --merge (not --squash or --rebase) unless asked otherwise
  • If the commit message from $ARGUMENTS is provided, use it exactly
Install via CLI
npx skills add https://github.com/maxwell2732/paper-replicate-agent-demo --skill commit
Repository Details
star Stars 121
call_split Forks 90
navigation Branch main
article Path SKILL.md
More from Creator