원클릭으로
pr-helper
Creates GitHub pull requests from the current branch. Use when the user asks to make a PR, open a PR, or create a pull request.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Creates GitHub pull requests from the current branch. Use when the user asks to make a PR, open a PR, or create a pull request.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Build full-stack React applications with TanStack Start. Use when creating, configuring, or working with TanStack Start projects, routing, server functions, middleware, deployment, or when the user mentions tanstack/start.
Generates clear commit messages from git diffs. Use when writing commit messages or reviewing staged changes.
Manage tasks, bugs, and features with the beans issue tracker. Use when creating, listing, updating, or working on beans, or when the user asks what to work on next.
Operational patterns for Cloudflare Wrangler CLI. Use when deploying workers, running D1 migrations, querying D1 databases, managing R2 buckets, or generating binding types. Distinct from cloudflare-api which covers documentation lookups.
Query Obsidian vaults via obi CLI. Use for any vault data lookup instead of grep or find -- searching notes, filtering by frontmatter (read status, type, tags), listing folders, reading sections, checking backlinks, and finding unread or recent notes.
Manage changelogs and versioning using the changesets CLI. Use when creating changesets, bumping versions, consuming changesets for a release, or maintaining CHANGELOG.md files.
| name | pr-helper |
| description | Creates GitHub pull requests from the current branch. Use when the user asks to make a PR, open a PR, or create a pull request. |
| allowed-tools | Read, Bash(git:*), Bash(gh:*) |
Create GitHub pull requests using the gh CLI.
git log --oneline main..<current-branch> to see all commits on the branch.git push origin <branch>. If it fails, ask the user.gh pr create.Short, descriptive. Follow the same conventions as commit messages but can be slightly longer. Examples:
v0.0.5: session metadata + query commandfix: resolve stale session detection race conditionfeat: add branch tracking across CLI and workerIf the branch contains a mix of features, use a version or summary label.
Use this structure:
## Summary
One or two sentences describing the overall goal of the PR.
## Changes
Group changes by area/theme with `###` subheadings. Under each, use bullet points. Be concise -- one line per change, describe what not how.
## Tests
Describe what was tested, not raw counts. Focus on what test suites were added or changed and why. Example:
- **CLI**: Search text extractor tests for OpenCode agent
- **Worker**: OpenCode mapper tests, migrated existing test suites to new data layer utilities
**bold** for package/component names in bullet points.Always specify --base main (or whatever the target branch is). Let --head default to the current branch or specify it explicitly.
gh pr create.gh pr create not the GitHub web UI.--body rather than opening an editor.