export interface AgentDevExecutorSchema { kind?: 'vite-react' | 'nestjs' | 'nextjs' | 'imported'; devTarget?: string; /** For kind "imported": the host's own dev-server shell command. */ devCommand?: string; projectRoot?: string; chrome?: boolean; headless?: boolean; port?: number; openUrl?: string; /** For kind "imported": fixed bridge WS port the client runtime connects to. */ wsPort?: number; /** For kind "imported": inject the node-instrumentation --import. Default true. */ node?: boolean; }