원클릭으로
pr
Create a pull request using the wingman PR template. Injects git state, commit history, and diff stats automatically.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a pull request using the wingman PR template. Injects git state, commit history, and diff stats automatically.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create a changelog-style promotion PR between two branches. Use for release promotions or branch-to-branch merges with a structured changelog.
Design engineering principles for making TUI interfaces feel polished. Use when building Textual widgets, reviewing TUI code, implementing transitions, focus states, alignment, spacing, or any visual detail work. Triggers on TUI polish, design details, "make it feel better", "feels off", layout alignment, color consistency, responsive sizing.
Create a git commit with conventional commit format. Injects current git state automatically.
Explain system behavior, request flows, architecture, or implementation logic as short 4chan-style greentext lines. Use when the user asks for a step-by-step explanation, says "explain the logic", asks for "greentext", or wants terse sequential reasoning with each line starting with `>`.
Create a GitHub issue using the wingman issue templates (bug, feature). Injects branch and commit context automatically.
Review PR comments from GitHub. Fetches inline review comments and issue comments, classifies by blocking vs non-blocking, and summarizes actionable items.
| name | pr |
| description | Create a pull request using the wingman PR template. Injects git state, commit history, and diff stats automatically. |
| allowed-tools | Bash(git *), Bash(gh *), Bash(awk *), Bash(sort *), Read |
| argument-hint | [base-branch] [--branch <source-branch>] |
git branch --show-currentgit status -sb | head -1Read .github/PULL_REQUEST_TEMPLATE.md and fill every section. The template is mandatory.
Do not free-form the PR body.
type(scope): description (conventional commit format, under 70 chars)$ARGUMENTS if provided, otherwise main--branch <name> is in $ARGUMENTS, use that branch for diff/log
commands instead of HEAD. This is needed when the PR branch lives in a different worktree
or the main repo checkout.-u if neededgh pr create with --body "$(cat <<'EOF' ... EOF)" for correct formatting--branch value if provided, otherwise current HEADgit log --oneline origin/main..<source-branch> (commits for this PR)git diff --stat origin/main..<source-branch> (diff stats)git diff --name-only origin/main..<source-branch> (changed files)