What problem does it solve? Working efficiently in the terminal requires mastering many separate tools—terminal emulation internals, session multiplexing, fuzzy finding, and fast code search. This Skill consolidates knowledge of libghostty-vt escape sequence parsing, tmux session management, zsh configuration, fzf fuzzy finding, and ripgrep searching into one reference so you can build and operate modern terminal environments without hunting through scattered documentation. ## Core Features & Use Cases - Terminal Emulation Reference: Detailed coverage of VT sequence types (C0 controls, CSI, OSC, escape sequences) and the libghostty-vt parsing architecture with Zig and C API examples. - Multiplexer & Shell Workflows: Practical tmux commands for session creation, detaching, and pane splitting, plus zsh hooks for workspace-aware shells. - Search & Navigation: Ready-to-use fzf and ripgrep command patterns, including combined pipelines like rg --files | fzf | xargs vim. - Use Case: You are building a terminal-based tool and need to parse ANSI escape sequences correctly. Use this Skill to understand CSI/OSC sequence structure and integrate libghostty-vt's SIMD-optimized parser into your application. ## Quick Start Ask the assistant to explain how to parse terminal escape sequences with libghostty-vt or to show tmux and fzf workflow commands for your shell session.