ワンクリックで
pr
Creates pull requests with proper formatting. Use when creating PRs, opening pull requests, or preparing changes for review.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Creates pull requests with proper formatting. Use when creating PRs, opening pull requests, or preparing changes for review.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Generates commit messages and creates commits. Use when writing commit messages, committing changes, or reviewing staged changes.
Generates commit messages and creates commits. Use when writing commit messages, committing changes, or reviewing staged changes.
Creates git branches with proper naming. Use when creating branches, starting new work, or switching to feature branches.
Creates pull requests with proper formatting. Use when creating PRs, opening pull requests, or preparing changes for review.
| name | pr |
| description | Creates pull requests with proper formatting. Use when creating PRs, opening pull requests, or preparing changes for review. |
Use Conventional Commit format, same as commit messages:
<type>(<scope>): <description>
feat: User-facing features or behavior changes (must change production code)fix: Bug fixes (must change production code)docs: Documentation onlystyle: Code style/formatting (no logic changes)refactor: Code restructuring without behavior changetest: Adding or updating testschore: CI/CD, tooling, dependency bumps, configs (no production code)## Summary
One sentence describing the overall change.
- Optional supporting details
- If needed
## Test plan
- [ ] How to verify it works
Apply labels using gh pr create --label <label> or gh pr edit --add-label <label>.
Apply all labels that fit. Only use these labels:
enhancement - User-facing features or improvements (must change production code behavior)refactor - Production code changes that don't alter behaviorbug - Fixes broken production code functionalitytest - Changes to testsdocumentation - Documentation changesNo label needed for dependency bumps, CI/CD, tooling, or infrastructure changes - these go in "Other Changes" in release notes.
Use type/short-description:
feat/user-login-flow
fix/csrf-token-handling
chore/ci-pipeline
git log main..HEAD to see commits for this branchgit diff main...HEAD to see all changes