commit-push-pr-workflow

Installation
SKILL.md

Commit, Push & PR Workflow

Applies to this repo's conventions:

  • Do not commit directly to main; use a feature branch and a PR.
  • PR/issue titles: English. PR bodies/comments: Simplified Chinese by default (unless the request starts with [EN]).
  • Avoid GitHub CLI --body with escaped newlines; prefer --body-file or stdin to prevent literal \\n.

This skill is written to work well on Windows (PowerShell 5.1+). Bash examples are optional.

Branch

  • Create a feature branch from main before making changes:
    • git fetch origin --prune
    • git switch main
    • git pull --ff-only
    • git switch -c docs/example-change

Commit

Related skills
Installs
47
First Seen
Jan 22, 2026