一键导入
promote
Create a changelog-style promotion PR between two branches. Use for release promotions or branch-to-branch merges with a structured changelog.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Create a changelog-style promotion PR between two branches. Use for release promotions or branch-to-branch merges with a structured changelog.
用 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.
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 | promote |
| description | Create a changelog-style promotion PR between two branches. Use for release promotions or branch-to-branch merges with a structured changelog. |
| allowed-tools | Bash(git *), Bash(gh *), Read |
| argument-hint | [--from <branch>] [--to <branch>] [--dry-run] |
git log --oneline origin/main..HEAD 2>/dev/null || echo "(no commits ahead of main)"main--from <branch> overrides source (default: current branch)--to <branch> overrides target (default: main)--dry-run prints the PR body without creating it| Prefix | Section |
|---|---|
feat | Features |
fix | Bug Fixes |
refactor | Refactors |
perf | Performance |
test | Tests |
docs | Documentation |
chore, ci | Chores |
Unrecognized prefixes go under Chores.
$ARGUMENTS for --from, --to, --dry-rungit log --format="%H %s" origin/<to>..origin/<from>* **scope:** description ([short-hash](commit-url)) or * description ([short-hash](commit-url)) if unscoped--dry-run, print the body and stopgh pr create --base <to> --head <from> --title "chore(release): promote <from> → <to>" --body "..."