with one click
iterm-tab
Open a new tab in iTerm, optionally start Claude with instructions
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
Open a new tab in iTerm, optionally start Claude with instructions
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
| name | iterm-tab |
| description | Open a new tab in iTerm, optionally start Claude with instructions |
| argument-hint | [directory] [instructions for Claude] |
Open a new tab in iTerm, optionally change to a directory and start Claude with instructions.
If $ARGUMENTS is provided, parse it to extract:
Then run an AppleScript command that:
cd to the specified directoryclaude -p "<instructions>"Example usage:
/iterm-tab - Just open a new tab and return/iterm-tab ~/myproject run the tests - Open tab, cd to ~/myproject, start Claude with "run the tests"/iterm-tab start the dev server - Open tab, start Claude with "start the dev server"Use this AppleScript template, filling in the command to run in the new tab:
osascript -e 'tell application "iTerm"
activate
tell current window
set originalTab to current tab
create tab with default profile
tell current session
write text "<command>"
end tell
select originalTab
end tell
end tell'
Where <command> is constructed based on arguments:
cd <directory> && claude -p "<instructions>"claude -p "<instructions>"Confirm to the user what was done.
Use when the user asks to take on, work on, or pick up a Linear issue - fetches issue details and sets up an isolated git worktree before starting implementation
Work on LeetCode problems in the ~/leetcode directory
Start the clawdbot gateway and show status
A simple hello world skill that demonstrates basic skill creation
Navigate to ~/kraken directory, initialize claude, and show local changes
Show and explain all uncommitted changes with a clear diff summary