libtermy-implementation
Installation
SKILL.md
libtermy Implementation
Core Workflow
- Inspect the current Termy checkout or upstream docs first. Treat libtermy as experimental and breaking-change prone.
- Choose the narrowest surface:
- Use
termy_corefor Rust embedders or changes that should be portable to FFI, WASM, JS, and tests. - Use
termy_ffifor C, Swift, Objective-C, or any host that needs a stable C ABI. - Use the macOS Swift reference when building or tuning the native macOS host.
- Use
- Keep terminal behavior in Rust core. Do not reimplement VT parsing, keyboard/mouse encoding, search, shell integration, color query replies, resize anchoring, config parsing, or dirty damage tracking in the host.
- Build hosts around full-or-partial frame updates. Prefer
frame_update/termy_terminal_take_frame_updateover polling full snapshots in a render loop. - Validate at the boundary you touched before broadening test scope.
Reference Routing
- Read
references/libtermy-api.mdwhen touchingtermy_core,termy_ffi, ABI structs/functions, event/search/input APIs, config/render config, ownership, threading, or Rust embedding. - Read
references/macos-swift-host.mdwhen implementing a macOS Swift app, SwiftPM linking,CTermy,LibTermyTerminal, wakeup monitoring, AppKit rendering, panes/tabs, settings, or tmux display terminals. - Read
references/optimization.mdwhen optimizing rendering, reducing FFI marshaling, tuning cadence, avoiding CPU/RSS regressions, reviewing performance PRs, or adding gates.