원클릭으로
kitty
Use numbered managed or adopted kitty terminals for listing terminal windows, unified terminal input, and screen inspection.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use numbered managed or adopted kitty terminals for listing terminal windows, unified terminal input, and screen inspection.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | kitty |
| description | Use numbered managed or adopted kitty terminals for listing terminal windows, unified terminal input, and screen inspection. |
Use the kitty tools when the user wants Codex to use a visible local kitty terminal on Linux.
Use kitty_list before choosing among existing numbered terminals, when the user asks what kitty windows exist, or after creating a split/window/tab so you can report the new window id. Treat short_id such as K1 as the user-facing selector.
Use kitty_open when the user wants a visible numbered kitty terminal but there is no command, text, or key input to send yet. kitty_open opens a managed kitty in the background without taking desktop focus, and returns the short_id and window metadata to use in later calls. On KWin, managed opens best-effort restore focus to the previously active window if the terminal is activated anyway.
Use kitty_send for all terminal input. It has three mutually exclusive modes:
command: shell commands. Example: kitty_send({ "short_id": "K1", "command": "pwd" }). A newline is added automatically, the default wait strategy is quiet, and the visible terminal shows only the real command and output.text: raw text for interactive programs, ssh, tmux, vim/nvim, prompts, and REPLs. Example: kitty_send({ "short_id": "K1", "text": "i" }).key: key chords such as ctrl+c, enter, or esc. Example: kitty_send({ "short_id": "K1", "key": "ctrl+c" }).kitty_send returns terminal feedback, not process-level stdout/stderr/exit code. If a command's status matters, inspect the output and, when needed, send another command such as echo $?.
Use wait_for to control feedback: delay, change, quiet, regex, or none. Prefer quiet for ordinary shell commands, regex when waiting for a known prompt or phrase, and delay for TUI or raw interaction.
Use kitty_read to inspect what a numbered terminal currently looks like without sending input. Prefer mode: "screen" when the user asks what is visible, tail for logs, and include_layout: true when window metadata matters.
Do not expect kitty_send to know when remote ssh commands, tmux pane commands, or TUI actions have completed. In those contexts, use text or key, read the screen feedback, and continue interactively.
Do not use hidden run/layout/focus/close helpers as the model workflow. The model-facing kitty interface is kitty_list, kitty_open, kitty_send, and kitty_read.
Use owner-authorized KDE Wayland foreground desktop observation and input. Screenshots default to KWin ScreenShot2, pointer and keyboard input use the pre-authorized KDE RemoteDesktop portal, and tray-hidden apps can be restored through KDE StatusNotifierItem.
Use when syncing verified Linux Codex App installer changes from /home/kkkzbh/code/codex-app/codex-desktop-linux-installer into /home/kkkzbh/code/linux-codex-app, updating pinned upstream manifests, building signed RPMs, publishing GitHub Releases, and verifying the GitHub Pages DNF repository.
Use when the user asks Codex to control KDE Dolphin or perform Linux file-manager workflows such as opening folders, revealing files, reading open Dolphin windows or selected files, listing, searching, creating folders, renaming, copying, moving, trashing, copying paths, opening properties, or opening a terminal in a folder.