#!/usr/bin/env node /** * `npx ue-mcp dialog mode [interactive|auto|defer|default] [--editor ]`. * * The sibling of `npx ue-mcp feedback mode`, and it exists for the same reason: * the mode is a per-user, per-device preference stored in * `~/.ue-mcp/state.json`, and that file is written by ue-mcp commands rather * than edited by hand. A setting whose only documented path was "open the state * file and type into it" was a setting nobody could safely use. * * Argv layout after index.ts splices "dialog" out: * argv[2] = subcommand (mode) * argv[3] = value (interactive | auto | defer | default) */ export {};