ワンクリックで
pr-creation
Create (draft) pull requests on GitHub. Use when user requests to create a pr, pull request, draft pr, draft pull request.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create (draft) pull requests on GitHub. Use when user requests to create a pr, pull request, draft pr, draft pull request.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Pull GitHub PR review comments for current branch or provided PR number, inspect code, and produce update plan. Use for PR feedback, requested changes, reviewer comments, or plan fixes from review comments.
Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to "open a website", "fill out a form", "click a button", "take a screenshot", "scrape data from a page", "test this web app", "login to a site", "automate browser actions", or any task requiring programmatic web interaction. Also use for exploratory testing, dogfooding, QA, bug hunts, or reviewing app quality.
Explore, build, and refine UI using the Tailwind Labs ui.sh mcp
Create, read, update, and list Linear issues. Use when user requests to create, read, update, or list Linear projects, issues, tickets, or tasks.
SOC 職業分類に基づく
| name | pr-creation |
| description | Create (draft) pull requests on GitHub. Use when user requests to create a pr, pull request, draft pr, draft pull request. |
Create a draft pull request using GitHub CLI. Assume code is done. Do not make code changes, format changes, config changes, commits, branch changes, or push changes when this skill is active.
Run only minimal git/GitHub CLI checks needed for PR creation.
git branch --show-current
Stop if current branch is main, master, staging, production, or repo default branch. Inform user PR cannot be created from default/protected branch. Suggest creating a feature branch from committed work.
gh repo view --json defaultBranchRef --jq .defaultBranchRef.name
Use this branch as PR base unless user specified another base.
git status --porcelain
Stop if output is non-empty. Inform user uncommitted changes exist. Ask whether they want to commit/stash/discard manually before PR creation.
git status -sb
Stop if output shows ahead commits, no upstream, or branch not pushed. Inform user branch must be pushed before PR creation. Suggest git push -u origin <current-branch>.
git fetch origin
git diff --stat origin/<base-branch>...HEAD
git diff origin/<base-branch>...HEAD
Use diff and branchname to create specific title/body. Do not edit files.
gh pr create --draft --base <base-branch> --title "feature: specific title" --body $'- Specific change with file/method/class references\n- Another specific change\n\nCloses ISSUE_ID'
feature:, fix:, chore:, refactor:, docs:.Draft PR, Changes made, or Summary.Closes ISSUE_ID ISSUE_ID_2 when issue ids are provided or extractable from branch name.Use when user requests creating a PR, pull request, draft PR, or draft pull request for already-finished work.