com um clique
iterm-tab
Open a new tab in iTerm, optionally start Claude with instructions
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Open a new tab in iTerm, optionally start Claude with instructions
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
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
Baseado na classificação ocupacional SOC
| 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.