create-pr
Create GitHub pull requests. Triggers on: 'create PR', 'pull request', 'submit PR'.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create GitHub pull requests. Triggers on: 'create PR', 'pull request', 'submit PR'.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Evaluate architectural decisions, propose ADRs. Triggers on: 'architecture review', 'ADR', 'design review'.
Perform structured code reviews. Triggers on: 'code review', 'review code', 'review PR'.
Evaluate strategic direction changes before execution. Triggers on: 'direction change', 'strategic decision', 'pivot'.
Triage and organize GitHub issues. Triggers on: 'triage', 'triage issues', 'organize backlog'.
Create new custom agent definition. Triggers on: 'create agent', 'new agent'.
Create new instructions file. Triggers on: 'create instructions', 'new instructions'.
| name | create-pr |
| description | Create GitHub pull requests. Triggers on: 'create PR', 'pull request', 'submit PR'. |
Creates GitHub PRs with titles following Conventional Commits format.
<type>(<scope>): <summary>
| Type | Description | Changelog |
|---|---|---|
feat | New feature | Yes |
fix | Bug fix | Yes |
perf | Performance improvement | Yes |
test | Adding/correcting tests | No |
docs | Documentation only | No |
refactor | Code change (no bug fix or feature) | No |
build | Build system or dependencies | No |
ci | CI configuration | No |
chore | Routine tasks, maintenance | No |
Define scopes based on your project structure. Examples:
core — Core/backend changesapi — API endpoint changesui — Frontend/UI changescli — CLI changesconfig — Configuration changesCheck current state:
git status
git diff --stat
git log origin/main..HEAD --oneline
Analyze changes to determine type, scope, and summary.
Push branch if needed:
git push -u origin HEAD
Create PR:
gh pr create --draft --title "<type>(<scope>): <summary>" --body "## Summary
[Describe what the PR does]
## Related Issues
closes #N
## Checklist
- [ ] Tests included
- [ ] Lint passes
- [ ] Documentation updated (if needed)"
The PR title must match this pattern:
^(feat|fix|perf|test|docs|refactor|build|ci|chore|revert)(\([a-zA-Z0-9 ]+\))?!?: [A-Z].+[^.]$
feat(core): Add user authentication module
fix(api): Resolve memory leak in request handler
docs: Update installation instructions
refactor(cli): Simplify command parsing logic
feat(api)!: Remove deprecated v1 endpoints