用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/dustland/openviber --skill terminal命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| 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).servertestsTargets 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