/** * Run Gajae Code as an ACP (Agent Client Protocol) server over stdio. * * Thin wrapper around the launch flow that forces `mode: "acp"` unless the * ACP terminal-auth flag asks the same command to open the interactive TUI. */ import { Command } from "@gajae-code/utils/cli"; export default class Acp extends Command { static description: string; static strict: boolean; run(): Promise; }