원클릭으로
issue-pr
Create a GitHub issue describing the root problem behind current changes, then open a PR that references it
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a GitHub issue describing the root problem behind current changes, then open a PR that references it
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Run a code review sub-agent
Post a DRAFT (pending) GitHub PR review made of separate inline review comments anchored to the diff, each with an AI-assisted disclosure and GitHub deep-link permalinks that render as code snippets. Use when the user asks to "add a draft review comment", "post review findings as separate comments", "leave inline review comments", or wants reviewer findings turned into a pending PR review with deep links to the code.
Convert a Marp markdown deck into a fully editable, on-brand PowerPoint (.pptx) built on a Google Slides template's native layouts, carrying speaker notes across, ready to upload to Google Slides. Use when someone wants a Marp deck "in Google Slides", "in the company template", or "as an editable branded deck" rather than rasterized slide images.
Commit, push, and open PR creation in the browser with an empty body for the human to fill in.
Reference for the workmux CLI that manages git worktrees and tmux windows as isolated development environments. Use when the user mentions workmux, worktrees, or parallel agent workflows.
Orchestrate multiple worktree agents. Spawn, monitor, communicate, and merge.
| name | issue-pr |
| description | Create a GitHub issue describing the root problem behind current changes, then open a PR that references it |
| allowed-tools | Bash(git diff:*) Bash(git status:*) Bash(git log:*) Bash(git branch:*) Bash(git stash:*) Bash(git checkout:*) Bash(git push:*) Bash(gh issue list:*) Bash(gh issue create:*) Bash(gh pr create:*) |
git branch --show-currentgit status --shortgit diff main...HEADgit diff --cachedAnalyze the changes to identify the root problem that motivated them. Focus on what was broken or missing, not what was done to fix it.
Find or create a GitHub issue:
gh issue list --search "<keywords>" using a few relevant keywords from the root problemgh issue create:
Create a branch (if on main) using git checkout -b with a short descriptive name.
Commit all changes using git add and git commit with a conventional commit message.
Push the branch to origin with git push -u origin <branch>.
Create a PR using gh pr create that:
Closes #<issue-number>
(e.g. gh pr create --title "<title>" --body "Closes #<issue-number>").
Do NOT write a description, summary, or approach; the human fills in the body.Do steps 3-6 in a single message after creating the issue.