feat: subagent runtime & CLI display - done

This commit is contained in:
tanzhenxin 2025-09-09 15:53:10 +08:00
parent 4985bfc000
commit 35e996d46c
23 changed files with 767 additions and 684 deletions

View file

@ -48,12 +48,12 @@ export const AgentViewerStep = ({ selectedAgent }: AgentViewerStepProps) => {
<Text>{toolsDisplay}</Text>
</Box>
{shouldShowColor(agent.backgroundColor) && (
{shouldShowColor(agent.color) && (
<Box>
<Text bold>Color: </Text>
<Box backgroundColor={getColorForDisplay(agent.backgroundColor)}>
<Text color="black">{` ${agent.name} `}</Text>
</Box>
<Text
color={getColorForDisplay(agent.color)}
>{` ${agent.name} `}</Text>
</Box>
)}