import { Command } from 'commander'; /** * Print the most recent CLI output for an agent in the workspace. * * Each task dispatched by the loop tees Claude/Copilot/OpenCode's stdout into * /.autodev/output//.txt * The pointer file .latest holds the current messageId. Reading * that file gives us the final message Claude wrote when it finished the * task — useful for surfacing the agent's own summary instead of just the * loop's "Task done" log line. */ export declare function tailOutputCommand(program: Command): void;