Our review
Creates a GitHub pull request with a Japanese description by analyzing commit history.
Strengths
- Automatically generates title and description from commits
- Uses Japanese for Japanese-speaking teams or projects
- Verifies and pushes the branch if not already remote
- Defaults to main branch but allows custom base
Limitations
- Requires GitHub CLI installed and authenticated
- Quality of generated text depends on commit messages
- Only supports single base branch at a time
When you need to quickly create a well-structured PR with a Japanese description based on recent commits.
If you prefer to manually write the PR description or if using a different Git hosting service.
Security analysis
SafeThe skill only uses standard GitHub CLI commands ('gh pr create', 'gh pr view') for creating pull requests. It does not involve any destructive operations, code execution from external sources, or exfiltration of secrets. The instructions are transparent and align with typical development workflows, posing no security risk.
No concerns found
Examples
/pr/pr developname: pr description: Create a pull request with Japanese description arguments:
- name: base description: Base branch (defaults to main) required: false
Pull Request作成スキル
現在のブランチからPull Requestを作成します。Descriptionは日本語で書かれます。
実行手順
- 現在のブランチ名を取得
- ブランチがリモートにpushされているか確認
- されていなければpush
- コミット履歴を確認してPRのタイトルと本文を作成
gh pr createでPRを作成
PRタイトルの決め方
- ブランチの主要な変更内容を簡潔に(50文字以内)
- 日本語で書く
- 動詞で始める(例:「〜を追加」「〜を修正」「〜を改善」)
PR本文の構成
## 概要
[変更の概要を2-3文で]
## 主な変更点
- [変更点1]
- [変更点2]
- [変更点3]
## テスト方法
[動作確認の手順]
## 注意事項
[レビュアーが知っておくべきこと(あれば)]
使用例
# 基本的な使い方
/pr
# ベースブランチを指定
/pr main
# developブランチに対してPRを作成
/pr develop
GitHub CLI コマンド
# PRを作成
gh pr create --base main --title "タイトル" --body "本文"
# PRの状態を確認
gh pr view
# PRのURLを取得
gh pr view --json url -q .url
実装のポイント
- コミットメッセージを解析してPR本文を自動生成
- 複数のコミットがある場合は、それぞれの変更をリストアップ
- Conventional Commitsの絵文字は除去して見やすく
- 日本語で統一された説明
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.