원클릭으로
pull-request
Create a GitHub pull request for the current branch with minimal description and appropriate labels.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a GitHub pull request for the current branch with minimal description and appropriate labels.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Analyze the changes in the current Jujutsu (jj) changeset and give it a clear, concise description with type and scope trailers. Use when the user asks to describe a change or commit.
Read and parse jj logs, commit messages, and descriptions. Use when the agent needs to inspect commit history, search for commits by message content or trailers, filter by author/date/branch, parse jj log output into structured data (subject, body, type/scope trailers), or navigate jj revision ranges. Triggered by requests to "show git log", "find commits with fix", "what changed in this branch", "list recent jj commits", or any history browsing task.
Read ShopifySharp source code and map GraphQL response types to application models. Use when working with ShopifySharp library, converting GraphQL API responses to C# or F# types, or understanding Shopify's generated types.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends the agent's capabilities with specialized knowledge, workflows, or tool integrations.
Split the current Jujutsu (jj) changeset into smaller, logically separate commits using non-interactive `jj split` with filesets. Use when the user asks to break up a change, split the working copy, separate unrelated edits into their own commits, stack a messy change into clean commits, or otherwise reshape one jj revision into several. Covers jj >= 0.42 topology, working-copy placement, and verification.
Break up the pending git changes into small, logical commits and commit them using well-structured commit messages.
SOC 직업 분류 기준
| name | pull-request |
| description | Create a GitHub pull request for the current branch with minimal description and appropriate labels. |
Create a GitHub pull request for the current branch with minimal description and appropriate labels.
This command creates a pull request by analyzing the commits on the current branch, generating a concise summary of changes, and applying relevant labels from the repository.
pull-request
jj root to check if the repo uses Jujutsu (jj). If it succeeds, use jj commands; otherwise fall back to git.
jj bookmark list to find the current bookmark, then jj log --no-pager -r "main..<bookmark>" and jj diff -r "main..<bookmark>" --stat for commits and scope. Use jj git remote list to find the GitHub remote for gh commands (e.g. --repo owner/name).git log master..HEAD --oneline and git diff master...HEAD --stat.gh label list (with --repo if needed) to see available labelsgh pr create including:
gh pr create --title "Upgrade Sentry browser packages and configuration" --body "$(cat <<'EOF'
This PR upgrades Sentry's browser packages to the latest versions and configures the latest integrations for improved error tracking. It also adds user data to the initial scope and wires up server-side Sentry configuration for view rendering.
EOF
)" --label "logging,development"
--label "label1,label2"