with one click
w-rebase
Rebase current branch onto target with conflict resolution
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Rebase current branch onto target with conflict resolution
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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
| 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.