From windows-terminal
Manage Windows Terminal tabs using wt.exe. Use when the user says 'open tabs', 'new tab', 'switch tab', 'focus tab', 'move pane to tab', 'tab color', 'tab title', 'multiple tabs', 'rename tab', or any variation of wanting to manage Windows Terminal tabs.
How this skill is triggered — by the user, by Claude, or both
Slash command
/windows-terminal:wt-tabshaikuThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill requires Windows Terminal (`wt.exe`), available on native Windows and WSL.
This skill requires Windows Terminal (wt.exe), available on native Windows and WSL.
If wt.exe is not found in PATH, tell the user this skill requires Windows or WSL and stop — do not attempt to run any commands.
Generate and immediately execute a wt.exe command to manage tabs.
-w 0 to target the current window (without it, wt.exe opens a new window).-d . on every subcommand so new tabs open in the current directory.\; (backslash-semicolon) in bash.wt.exe subcommand reference| Subcommand | Alias | Purpose |
|---|---|---|
new-tab | nt | Open a new tab |
focus-tab | ft | Switch to a tab by zero-based index |
move-pane | mp | Move the active pane to another tab |
| Flag | Description |
|---|---|
-p "<profile>" | Profile name (e.g. "Windows PowerShell", "Ubuntu") |
-d <dir> | Starting directory (always use -d .) |
-t <index> | Target tab index (zero-based) for focus-tab and move-pane |
--title "<title>" | Set the tab title |
--tabColor #RRGGBB | Set the tab color |
--suppressApplicationTitle | Lock a custom title so the shell doesn't overwrite it |
Open a new tab:
wt.exe -w 0 new-tab -d .
Open 3 tabs with different profiles:
wt.exe -w 0 nt -p "Windows PowerShell" -d . \; nt -p "Ubuntu" -d . \; nt -p "Git Bash" -d .
Open tabs with custom colors:
wt.exe -w 0 nt -d . --title "API" --tabColor #009999 \; nt -d . --title "Web" --tabColor #994400
Focus a specific tab (e.g. tab 2):
wt.exe -w 0 focus-tab -t 2
Move active pane to tab 1:
wt.exe -w 0 move-pane -t 1
Named tabs with locked titles:
wt.exe -w 0 nt -d . --title "Server" --suppressApplicationTitle \; nt -d . --title "Client" --suppressApplicationTitle
Run the generated command directly with the Bash tool using wt.exe ....
npx claudepluginhub lucaspimentel/claude-plugins --plugin windows-terminalManages tmux sessions, windows, and panes for persistent remote workflows and shell scripting automation. Useful for long-running processes, SSH disconnects, and multi-pane terminal layouts.
Opens tabs or panes in Zellij: empty, with shell commands, Claude sessions, or GitHub issues. Triggers on phrases like 'open new tab', 'run npm test in pane', 'start issue #123' (supports Russian).