import React from 'react' import { Box, Text } from 'ink' import { getTheme } from '../../utils/theme' interface Props { agentType: string status: string toolCount?: number } export function TaskProgressMessage({ agentType, status, toolCount }: Props) { const theme = getTheme() return ( [{agentType}] {status} {toolCount && toolCount > 0 && ( Tools used: {toolCount} )} ) }