원클릭으로
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 직업 분류 기준
Creates git branches with proper naming. Use when creating branches, starting new work, or switching to feature branches.
Generates commit messages and creates commits. Use when writing commit messages, committing changes, or reviewing staged changes.
| 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
For any change to extraction or a check, the test plan must show the result against the committed fixture and the programmatic-mutation cases (structure removed → STRUCTURE_CHANGED, value changed → MISMATCH, etc.). For anything that sends a notification, confirm it was exercised with --dry-run and never delivered to a live recipient during testing.
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.
Use type/short-description:
feat/google-business-check
fix/hours-normalization
chore/pre-commit-hooks
git log main..HEAD to see commits for this branchgit diff main...HEAD to see all changes