ワンクリックで
terminal
Create, manage, and monitor persistent terminal sessions for running commands, dev servers, and interactive CLIs.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create, manage, and monitor persistent terminal sessions for running commands, dev servers, and interactive CLIs.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Run OpenAI Codex CLI for autonomous software engineering tasks via non-interactive `codex exec` with chat-friendly outputs.
Use the Cursor CLI (agent) for software engineering tasks. Includes installation, auth, commands, terminal-based automation, and best practices for AI coding workflows.
Run Google Gemini CLI for autonomous coding and general tasks via headless mode with chat-friendly outputs.
GitHub operations via gh CLI — list issues, create branches, create PRs, clone repos.
Search, read, send, and manage Gmail emails via Google API
Interact with Railway deployments — check status, view logs, redeploy services, and manage environment variables.
| name | terminal |
| version | 2.0.0 |
| description | Create, manage, and monitor persistent terminal sessions for running commands, dev servers, and interactive CLIs. |
| requires | {"binaries":[{"name":"tmux","hint":"Install with: brew install tmux (macOS) or sudo apt install tmux (Ubuntu/Debian)"}]} |
Manage persistent terminal sessions that survive disconnections and can be viewed from the web UI. Sessions run in the background and their output can be read at any time.
coding, dev).server, tests).Targets identify which terminal to interact with:
codingcoding:1 (by index) or coding:server (by name)coding:1.0 (window 1, pane 0)When the user needs multiple terminals (e.g. editors, dev servers, test runners):
dev).server, tests, editor).Use terminal_read to peek at what's happening without interrupting the process:
terminal_read({ target: "dev:server", lines: 100 })
This is useful for:
When users ask to set up dependencies automatically instead of copy/pasting commands:
terminal_prepare_skill_prerequisites({ skillId: "<skill>", mode: "plan" }) to preview actionsterminal_prepare_skill_prerequisites({ skillId: "<skill>", mode: "apply" }) to execute installs and auth flowsauthTarget using terminal_send_keysSupported skill IDs: cursor-agent, codex-cli, gemini-cli, github, railway, terminal.
terminal_new_session with a descriptive nameterminal_new_window / terminal_split_pane for each terminalterminal_send_keys to run commands, terminal_read to monitorterminal_rename_session / terminal_rename_window as neededterminal_kill_window for individual windows, terminal_kill_session when done