A Claude Code skill (slash command) to open a PR after committing all outstanding changes and pushing them.
--- allowed-tools: Bash(git add:*), Bash(git status:*), Bash(git commit:*), Bash(git push:*), Bash(gh pr create:*) description: 提交并推送所有内容,然后向 main 打开一个 PR 请求 --- ## 上下文 - 当前 git 状态: !`git status` - 当前 git diff (已暂存和未暂存的更改): !`git diff HEAD` - 当前分支: !`git branch --show-current` - 最近的提交: !`git log --oneline -10` ## 你的任务 1. 审查现有更改,然后按照约定创建 git 提交 co...