/** * /compact command handler for Zoe CLI. * * Summarizes the conversation to reduce token usage while preserving * key context needed to continue the session. * * Aliases: /compress * * Uses an `ora` spinner (stdout), so it is marked `interactive` and the TUI * defers it — run it in the readline REPL. */ import type { CommandHandler } from './registry.js'; export declare const compactHandler: CommandHandler;