feat: add codex-iterm skill

This commit is contained in:
Adolfo Reyna
2026-02-19 10:44:21 -05:00
parent 7865dd48e8
commit faae96c9ed
3 changed files with 118 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
on run argv
if (count of argv) is 0 then
error "Expected shell command argument"
end if
set shellCommand to item 1 of argv
tell application "iTerm"
activate
if (count of windows) = 0 then
create window with default profile
end if
tell current session of current window
write text shellCommand
end tell
end tell
end run