一键导入
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.