소스 정보
- 저장소
- lukemcqueen/hermes-cortex
- 최근 소스 활동
- 2026년 8월 21일 17:21
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/lukemcqueen/hermes-cortex --skill terminal-emulator-config명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
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.
SKILL.md 표시 중
| 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.