#!/usr/bin/env node /** * Agent Mode Entry Point * * This module is executed when the CLI is spawned as a sub-agent child process. * It receives configuration via IPC, runs the agent task autonomously, and * streams progress/results back to the parent process. * * Usage: This file is NOT called directly. It's spawned by SubAgentProcessManager * via child_process.fork(). * * Communication: * - Parent sends IPCStartMessage to begin execution * - Child streams IPCProgressMessage, IPCToolCallMessage, etc. * - Child sends IPCCompletedMessage when done * * @module cli/agent-mode * @version 1.0.0 */ export {}; //# sourceMappingURL=agent-mode.d.ts.map