원클릭으로
w-rebase
Rebase current branch onto target with conflict resolution
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Rebase current branch onto target with conflict resolution
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
This skill should be used when the user needs to automate browser interactions, test UI workflows, verify page elements, take screenshots, upload files to forms, or interact with web applications during development and debugging. Use this skill for testing PDF upload dialogs, form interactions, dropdown selections, and visual verification of web pages.
Execute tasks from a tasks.yaml by orchestrating code-writer agents
Plan a feature using the prd-planner subagent
Break down a PRD into tasks following the task YAML spec
Manage tmux sessions, windows, and panes from the CLI — list state, read pane output, send keys/commands, create or kill sessions and windows, and inspect long-running terminal work. Use this skill whenever the user mentions tmux, asks to check what's running in another terminal, wants to start a background process in a tmux session, send a command to a running pane, capture or tail output from a tmux pane, attach context from a pane, or troubleshoot a stuck tmux process — even if they don't explicitly say "tmux command."
Plan a feature using the prd-planner subagent
SOC 직업 분류 기준
| name | w-rebase |
| description | Rebase current branch onto target with conflict resolution |
| argument-hint | ["target"] |
| allowed-tools | Bash(git fetch:*), Bash(git rebase:*), Bash(git log:*), Bash(git add:*), Bash(git status:*), Read, Edit |
Rebase the current branch.
Arguments: $ARGUMENTS
git remote show origin | awk '/HEAD branch/ {print $NF}'git fetch origingit rebase <branch> (using local branch, not origin/branch)git log -p -n 3 <target> -- <file> to see recent changes to that file in the target branchgit rebase --continueIMPORTANT: Be silent during execution. Do not narrate your actions or explain what you're doing.
When complete, output ONLY a compact summary in this exact format:
Rebased N commits onto <target>
[If conflicts:]
- <file>: <one line describing resolution>
- <file>: <one line describing resolution>
Nothing else. No explanations, no status updates, no tool output.