一键导入
horizon-notify
Notify the Horizon workspace user about completed work, findings, or needed decisions. Only works when HORIZON env var is set.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Notify the Horizon workspace user about completed work, findings, or needed decisions. Only works when HORIZON env var is set.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | horizon-notify |
| description | Notify the Horizon workspace user about completed work, findings, or needed decisions. Only works when HORIZON env var is set. |
You are running inside Horizon, a GPU-accelerated terminal workspace. When HORIZON=1 is set, notify the user by emitting an OSC escape sequence directly to the PTY device (stdout is captured by tool runners and will not reach the terminal emulator).
Use this command (works on Linux and macOS):
printf '\033]0;HORIZON_NOTIFY:%s:%s\007' "" "" > "/dev/$(ps -o tty= -p $PPID | tr -d ' ')"
Severities: info, done, attention Keep messages under 80 chars.
Use this when you:
Related OSC API for terminal titles:
printf '\033]0;HORIZON_TITLE:set:%s\007' "<title>" > "/dev/$(ps -o tty= -p $PPID | tr -d ' ')"printf '\033]0;HORIZON_TITLE:clear\007' > "/dev/$(ps -o tty= -p $PPID | tr -d ' ')"Keep titles under 80 chars and avoid newlines.