원클릭으로
iterm-tab
Open a new tab in iTerm, optionally start Claude with instructions
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Open a new tab in iTerm, optionally start Claude with instructions
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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
| 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.