* fix(tui): close slash parity gaps with CLI Route unsupported /skills subcommands through slash.exec, support /new <name> titles, and handle /redraw natively so TUI behavior matches classic CLI. Also filter gateway-only commands out of the TUI catalog while keeping /status discoverable. * fix(tui): run remaining CLI parity paths natively Forward chat launch flags into the TUI runtime and handle live-session status and skill reloads in the gateway process so TUI state no longer depends on the slash worker's stale CLI instance. * fix(tui): block stale snapshot restores Prevent snapshot restore from running through the isolated slash worker because it mutates disk state without refreshing the live TUI agent. * chore: uptick * fix(tui): guard async session title updates Handle failures from the fire-and-forget session.title RPC so title-setting errors do not surface as unhandled promise rejections while preserving session-scoped messaging.
17 lines
924 B
TypeScript
17 lines
924 B
TypeScript
const truthy = (v?: string) => /^(?:1|true|yes|on)$/i.test((v ?? '').trim())
|
|
|
|
export const STARTUP_RESUME_ID = (process.env.HERMES_TUI_RESUME ?? '').trim()
|
|
export const STARTUP_QUERY = (process.env.HERMES_TUI_QUERY ?? '').trim()
|
|
export const STARTUP_IMAGE = (process.env.HERMES_TUI_IMAGE ?? '').trim()
|
|
export const MOUSE_TRACKING = !truthy(process.env.HERMES_TUI_DISABLE_MOUSE)
|
|
export const NO_CONFIRM_DESTRUCTIVE = truthy(process.env.HERMES_TUI_NO_CONFIRM)
|
|
|
|
// Skip AlternateScreen — TUI renders into the primary buffer so the host
|
|
// terminal's native scrollback captures whatever scrolls off the top.
|
|
// Experiment gate: lets us measure native scroll vs our virtualization on
|
|
// the same pipeline.
|
|
export const INLINE_MODE = truthy(process.env.HERMES_TUI_INLINE)
|
|
|
|
// Live FPS counter overlay, fed by ink's onFrame (real render rate, not a
|
|
// synthetic timer).
|
|
export const SHOW_FPS = truthy(process.env.HERMES_TUI_FPS)
|