@@ -151,7 +151,9 @@ export const ChatRowContent = ({
151
151
className = "codicon codicon-terminal"
152
152
style = { { color : normalColor , marginBottom : "-1.5px" } } > </ span >
153
153
) ,
154
- < span style = { { color : normalColor , fontWeight : "bold" } } > Roo wants to execute this command:</ span > ,
154
+ < span style = { { color : normalColor , fontWeight : "bold" } } >
155
+ Agent wants to execute this command:
156
+ </ span > ,
155
157
]
156
158
case "use_mcp_server" :
157
159
const mcpServerUse = JSON . parse ( message . text || "{}" ) as ClineAskUseMcpServer
@@ -164,8 +166,8 @@ export const ChatRowContent = ({
164
166
style = { { color : normalColor , marginBottom : "-1.5px" } } > </ span >
165
167
) ,
166
168
< span style = { { color : normalColor , fontWeight : "bold" } } >
167
- Roo wants to { mcpServerUse . type === "use_mcp_tool" ? "use a tool" : "access a resource" } on the { " " }
168
- < code > { mcpServerUse . serverName } </ code > MCP server:
169
+ Agent wants to { mcpServerUse . type === "use_mcp_tool" ? "use a tool" : "access a resource" } on
170
+ the < code > { mcpServerUse . serverName } </ code > MCP server:
169
171
</ span > ,
170
172
]
171
173
case "completion_result" :
@@ -289,7 +291,7 @@ export const ChatRowContent = ({
289
291
className = "flex items-center gap-2 p-2 rounded-lg mb-2" >
290
292
< PencilIcon className = "w-5 h-5" />
291
293
< div className = "flex flex-col" >
292
- < span className = "font-bold uppercase" > Roo wants to edit</ span >
294
+ < span className = "font-bold uppercase" > Agent wants to edit</ span >
293
295
294
296
< span
295
297
style = { {
@@ -323,7 +325,7 @@ export const ChatRowContent = ({
323
325
className = "flex items-center gap-2 p-2 rounded-lg" >
324
326
{ /* {toolIcon("new-file")} */ }
325
327
< PlusCircleIcon className = "w-5 h-5" />
326
- < span className = "font-bold uppercase" > Roo wants to create a new file</ span >
328
+ < span className = "font-bold uppercase" > Agent wants to create a new file</ span >
327
329
</ div >
328
330
< CodeAccordian
329
331
isLoading = { message . partial }
@@ -354,7 +356,7 @@ export const ChatRowContent = ({
354
356
width : "fit-content" ,
355
357
} } >
356
358
< span style = { { fontWeight : "bold" } } className = "uppercase" >
357
- { message . type === "ask" ? "Roo wants to read this file" : "Roo read this file:" }
359
+ { message . type === "ask" ? "Agent wants to read this file" : "Roo read this file:" }
358
360
</ span >
359
361
< div
360
362
style = { {
@@ -406,7 +408,7 @@ export const ChatRowContent = ({
406
408
{ toolIcon ( "folder-opened" ) }
407
409
< span style = { { fontWeight : "bold" } } >
408
410
{ message . type === "ask"
409
- ? "Roo wants to view the top level files in this directory:"
411
+ ? "Agent wants to view the top level files in this directory:"
410
412
: "Roo viewed the top level files in this directory:" }
411
413
</ span >
412
414
</ div >
@@ -426,7 +428,7 @@ export const ChatRowContent = ({
426
428
{ toolIcon ( "folder-opened" ) }
427
429
< span style = { { fontWeight : "bold" } } >
428
430
{ message . type === "ask"
429
- ? "Roo wants to recursively view all files in this directory:"
431
+ ? "Agent wants to recursively view all files in this directory:"
430
432
: "Roo recursively viewed all files in this directory:" }
431
433
</ span >
432
434
</ div >
@@ -446,7 +448,7 @@ export const ChatRowContent = ({
446
448
{ toolIcon ( "file-code" ) }
447
449
< span style = { { fontWeight : "bold" } } >
448
450
{ message . type === "ask"
449
- ? "Roo wants to view source code definition names used in this directory:"
451
+ ? "Agent wants to view source code definition names used in this directory:"
450
452
: "Roo viewed source code definition names used in this directory:" }
451
453
</ span >
452
454
</ div >
@@ -466,7 +468,7 @@ export const ChatRowContent = ({
466
468
< span style = { { fontWeight : "bold" } } >
467
469
{ message . type === "ask" ? (
468
470
< >
469
- Roo wants to search this directory for < code > { tool . regex } </ code > :
471
+ Agent wants to search this directory for < code > { tool . regex } </ code > :
470
472
</ >
471
473
) : (
472
474
< >
@@ -493,7 +495,7 @@ export const ChatRowContent = ({
493
495
// {isInspecting ? <ProgressIndicator /> : toolIcon("inspect")}
494
496
// <span style={{ fontWeight: "bold" }}>
495
497
// {message.type === "ask" ? (
496
- // <>Roo wants to inspect this website:</>
498
+ // <>Agent wants to inspect this website:</>
497
499
// ) : (
498
500
// <>Roo is inspecting this website:</>
499
501
// )}
@@ -518,7 +520,7 @@ export const ChatRowContent = ({
518
520
< span style = { { fontWeight : "bold" } } >
519
521
{ message . type === "ask" ? (
520
522
< >
521
- Roo wants to switch to < code > { tool . mode } </ code > mode
523
+ Agent wants to switch to < code > { tool . mode } </ code > mode
522
524
{ tool . reason ? ` because: ${ tool . reason } ` : "" }
523
525
</ >
524
526
) : (
@@ -537,7 +539,7 @@ export const ChatRowContent = ({
537
539
< div style = { headerStyle } >
538
540
{ toolIcon ( "new-file" ) }
539
541
< span style = { { fontWeight : "bold" } } >
540
- Roo wants to create a new task in < code > { tool . mode } </ code > mode:
542
+ Agent wants to create a new task in < code > { tool . mode } </ code > mode:
541
543
</ span >
542
544
</ div >
543
545
< div style = { { paddingLeft : "26px" , marginTop : "4px" } } >
0 commit comments