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
--bodywith escaped newlines; prefer--body-fileor 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
mainbefore making changes:git fetch origin --prunegit switch maingit pull --ff-onlygit switch -c docs/example-change