mit einem Klick
issue
// Create a GitHub issue using the wingman issue templates (bug, feature). Injects branch and commit context automatically.
// Create a GitHub issue using the wingman issue templates (bug, feature). Injects branch and commit context automatically.
| 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.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.