(name)
| 222 | // ─── Tool indicators ───────────────────────────────────────────────────────── |
| 223 | |
| 224 | function toolStart(name) { |
| 225 | return ` ${chalk.cyan('⚙')} ${fitAnsi(chalk.cyan(name), 14)} │ `; |
| 226 | } |
| 227 | |
| 228 | function toolSuccess(msg, ms) { |
| 229 | return `${chalk.green('✓')} ${chalk.white(msg)} ${chalk.gray('(' + ms + 'ms)')}`; |