원클릭으로
commit
Create a git commit with conventional commit format. Injects current git state automatically.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a git commit with conventional commit format. Injects current git state 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.
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 | commit |
| description | Create a git commit with conventional commit format. Injects current git state automatically. |
| allowed-tools | Bash(git add *), Bash(git status *), Bash(git commit *), Bash(git diff *) |
git status -sbgit diff HEAD --statgit branch --show-currentgit log --oneline -10Commits are terse one-liner conventional commits: type(scope): description.
feat, fix, refactor, docs, test, choreStage files by name (never git add -A or git add .). Group changes by intent.
Based on the context above, stage the relevant files and create the commit. Do not use any other tools. Do not send any text besides the tool calls.