원클릭으로
issue
Create a GitHub issue using the wingman issue templates (bug, feature). Injects branch and commit context automatically.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a GitHub issue using the wingman issue templates (bug, feature). Injects branch and commit context automatically.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create a pull request using the wingman PR template. Injects git state, commit history, and diff stats automatically.
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 `>`.
Review PR comments from GitHub. Fetches inline review comments and issue comments, classifies by blocking vs non-blocking, and summarizes actionable items.
| name | issue |
| description | Create a GitHub issue using the wingman issue templates (bug, feature). Injects branch and commit context automatically. |
| allowed-tools | Bash(git *), Bash(gh *), Read |
| argument-hint | <bug|feature> <title> |
git branch --show-currentgit log -1 --onelinegit remote get-url originParse the first positional arg from $ARGUMENTS as the issue type:
| Type | Template file | Labels |
|---|---|---|
| bug | .github/ISSUE_TEMPLATE/bug_report.yml | bug,triage |
| feature | .github/ISSUE_TEMPLATE/feature_request.yml | enhancement |
The bug_report.yml file is a GitHub issue form. gh issue create --body submits plain
markdown, so translate the yaml form fields into a markdown body with the same section
headings (Bug Description, Steps to Reproduce, Expected Behavior, Environment,
Additional Context).
For feature_request.yml, read the file and translate form fields the same way.
$ARGUMENTS (after the type) form the title.gh issue create --title "..." --body "$(cat <<'EOF' ... EOF)" --label "...".$ARGUMENTS:
bug or feature). If missing or invalid,
ask the user which template to use..github/ISSUE_TEMPLATE/.gh issue create with the right labels.