← Back to list

commit-push-pr
by whywaita
⭐ 0🍴 0📅 Jan 18, 2026
SKILL.md
name: commit-push-pr description: Create a git commit, push a branch, and open a Pull Request with gh. Use when asked to commit changes, push to origin, or create PRs, especially when conventional commits and PR templates are required.
Commit, Push, and PR Workflow
Workflow
- Detect PR language by reading
README/README.md.- If the README contains Japanese text, use Japanese for PR title/body; otherwise use English.
- Ensure a feature branch.
- Run
git branch --show-current. - If on
mainormaster, infer branch naming fromgit branch -r --list 'origin/*' | grep -v 'HEAD\|main\|master', propose a name, then rungit switch -c <branch-name>.
- Run
- Try signed commit first, fallback if it fails.
- Attempt a signed commit with
git commit -S. - If the signed commit fails, retry without signing using
git -c commit.gpgsign=false commitand note the fallback in the response.
- Attempt a signed commit with
- Create a Conventional Commit.
- Format:
<type>[optional scope]: <description>- Optional body
- Conversation log:
prompt: <user prompt>----<assistant response>- Repeat for each exchange
- Optional footer(s)
- Use
feat|fix|docs|style|refactor|test|chore|ci|build|perfas needed. - Keep description present tense, lowercase, under 50 chars, no period.
- Format:
- Push the branch.
- If no upstream:
git push -u origin <branch-name>. - Otherwise:
git push.
- If no upstream:
- Create a PR with
gh pr create.- Look for PR templates in
.github/PULL_REQUEST_TEMPLATE.md,.github/PULL_REQUEST_TEMPLATE/, ordocs/PULL_REQUEST_TEMPLATE.md. - If no template, use a language-appropriate default template.
- Use a HEREDOC body:
gh pr create --title "<title>" --body "$(cat <<'EOF' <body> EOF )"
- Look for PR templates in
- Output the PR URL.
Default PR templates
English
## Summary
- <1-3 bullets>
## Changes
- <specific changes>
## Test Plan
- <how to test>
## Notes
- <extra context>
Japanese
## 概要
- <1〜3点>
## 変更点
- <具体的な変更>
## テスト方法
- <テスト手順>
## 備考
- <補足>
Score
Total Score
55/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
3ヶ月以内に更新
+5
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon


