원클릭으로
create-pr
Create a GitHub PR with optional issue linking. Use after committing and pushing changes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a GitHub PR with optional issue linking. Use after committing and pushing changes.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Audit Android screens against Figma designs with two-phase verification. Phase 1 agents find mismatches, Phase 2 agents independently verify before creating issues. Usage: /audit-figma [screen-name-or-figma-url] or /audit-figma all
Create a PR for Figma implementation work. Verifies before/after screenshots exist, uploads them to the PR, and ensures quality standards are met. Usage: /create-figma-pr
Implement a Figma design change with before/after screenshot capture. Takes a GitHub issue or Figma URL, fetches the design, captures a "before" screenshot, implements the fix, captures an "after" screenshot, and prepares everything for PR. Usage: /implement-figma <issue-number-or-figma-url>
Stage, commit, and optionally push changes. Use after completing a task.
Create a new git branch from conversation context. Use when starting work on an issue or feature.
Address CodeRabbit or other AI reviewer comments on a PR to make it merge-ready.
| name | create-pr |
| description | Create a GitHub PR with optional issue linking. Use after committing and pushing changes. |
| disable-model-invocation | true |
/create-pr or /create-pr #42 (with GitHub issue)
git log --oneline main..HEAD
git diff --stat main..HEAD
git branch --show-current
#42 or issue URL^\d+-./gradlew lint
git push -u origin $(git branch --show-current)
gh pr create --title "short description" --body "$(cat <<'EOF'
## Summary
- Brief description of changes
## Issue
Closes #42
## Test Plan
- [ ] Manual testing steps
- [ ] Lint passes (`./gradlew lint`)
- [ ] Debug build succeeds (`./gradlew assembleDebug`)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
EOF
)"
Print the PR URL so the user can review it.