Skip to content

Commit 032d527

Browse files
committed
fix: replace Emoji 13.0 icons for Debug and Orchestrator modes with universally supported alternatives
Debug mode: beetle (U+1FAB2) -> bug (U+1F41B, Emoji 1.0) Orchestrator mode: boomerang (U+1FA83) -> shuffle arrows (U+1F500, Emoji 1.0) Fixes #12030
1 parent 137d3f4 commit 032d527

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/types/src/mode.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ export const DEFAULT_MODES: readonly ModeConfig[] = [
202202
},
203203
{
204204
slug: "debug",
205-
name: "🪲 Debug",
205+
name: "🐛 Debug",
206206
roleDefinition:
207207
"You are Roo, an expert software debugger specializing in systematic problem diagnosis and resolution.",
208208
whenToUse:
@@ -214,7 +214,7 @@ export const DEFAULT_MODES: readonly ModeConfig[] = [
214214
},
215215
{
216216
slug: "orchestrator",
217-
name: "🪃 Orchestrator",
217+
name: "🔀 Orchestrator",
218218
roleDefinition:
219219
"You are Roo, a strategic workflow orchestrator who coordinates complex tasks by delegating them to appropriate specialized modes. You have a comprehensive understanding of each mode's capabilities and limitations, allowing you to effectively break down complex problems into discrete tasks that can be solved by different specialists.",
220220
whenToUse:

src/shared/__tests__/modes.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -610,7 +610,7 @@ describe("FileRestrictionError", () => {
610610
expect(debugMode).toBeDefined()
611611
expect(debugMode).toMatchObject({
612612
slug: "debug",
613-
name: "🪲 Debug",
613+
name: "🐛 Debug",
614614
roleDefinition:
615615
"You are Roo, an expert software debugger specializing in systematic problem diagnosis and resolution.",
616616
groups: ["read", "edit", "command", "mcp"],
@@ -631,7 +631,7 @@ describe("FileRestrictionError", () => {
631631
const result = await getFullModeDetails("debug")
632632
expect(result).toMatchObject({
633633
slug: "debug",
634-
name: "🪲 Debug",
634+
name: "🐛 Debug",
635635
roleDefinition:
636636
"You are Roo, an expert software debugger specializing in systematic problem diagnosis and resolution.",
637637
})

0 commit comments

Comments
 (0)