用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/lukemcqueen/hermes-cortex --skill terminal-emulator-config命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Cross-server agent health monitoring using binary status vectors — deploy health endpoints on each agent, poll from orchestrator, alert on state transitions.
Wire a self-hosted Langfuse instance to Hermes Agent — generate API keys, configure env vars, enable the bundled plugin, install SDK, and verify traces flow.
Use before enforcement code changes or shared-repo commits.
| name | terminal-emulator-config |
| description | Diagnose terminal input issues and review emulator configs. |
| version | 1.0.0 |
| category | devops |
| platforms | ["linux","macos"] |
Official keybind docs: "By default, a keybind will consume the input, meaning that the associated encoding (if any) will not be sent to the running program."
keybind = ctrl+shift+... / alt+... lines makes those combos dead in every app.keybind = performable:ctrl+shift+c=copy_to_clipboard — only consumes when there is a selection; otherwise the key passes through to the app. Standard fix for copy/paste binds.macos-option-as-alt defaults to true on U.S. Standard and U.S. International layouts — Option+letter sends Alt+escapes instead of macOS special characters (Option+u dead-key → ä/ö/ü broken). Ghostty discussion #6005: "None of the characters invoked with Alt+[character] is printed."keybind = clear (#3622) — Ghostty swallows the events.macos-option-as-alt = false.term is xterm-ghostty, deliberately xterm-prefixed because vim uses the xterm prefix to enable modifyOtherKeys (config reference, "HACK" note).term = xterm-256color degrades enhanced key reporting and protocol negotiation in vim/fish/tmux. Keep the native TERM; for SSH use the built-in conversion (Ghostty shell-integration-features = ssh-env auto-converts to xterm-256color remotely) instead of a global override.gtk-*, linux-cgroup-*) are ignored with warnings on macOS; quick-terminal-* is macOS-only. Cosmetic noise, not fatal — but a Linux config pasted onto macOS is the #1 source of "why is my config wrong" questions. Always confirm the actual platform first.clipboard-read = ask then allow → allow).+ IS Shift+=, so ctrl+plus and ctrl+shift+equal are the same trigger — later line silently wins.font-family is a fallback chain (primary + fallbacks), NOT last-wins. Verify before claiming.ctrl+0 → Emacs digit-argument / NUL — eaten by font-reset bindsctrl+minus → readline undo (C-_) — eaten by font-shrink bindsctrl+shift+left/right/up/down → macOS text selection + tab/prompt-nav conflictsctrl+shift+c/v → vim/Neovim copy/paste patternsclipboard-paste-protection = true shows a confirmation dialog for unsafe pastes — users perceive this as "special characters don't work" when pasting. Always ask whether the failure is typing or pasting.ghostty +list-keybinds, ghostty +list-keybinds --default, ghostty +list-themes, ghostty +list-fonts.performable: — the standard fix for binds that shouldn't swallow app keys.references/ghostty-macos.md — verified Ghostty config-reference quotes, GH discussion findings (#6005, #3622, #9368), and the macOS config-review checklist from the 2026-08 session.