(label: string, value: string)
| 20 | } |
| 21 | |
| 22 | function makeStatLine(label: string, value: string): string { |
| 23 | return `${chalk.hex('#7dd3fc')(label.padEnd(10))}${chalk.white(value)}`; |
| 24 | } |
| 25 | |
| 26 | function renderHeader(agentName: string, model: string, workspacePath: string): void { |
| 27 | const width = output.columns || 100; |