This commit is contained in:
roomote-v0[bot] 2026-04-08 11:38:43 -06:00 committed by GitHub
commit 573c7e63ca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -202,7 +202,7 @@ export const DEFAULT_MODES: readonly ModeConfig[] = [
},
{
slug: "debug",
name: "🪲 Debug",
name: "🐛 Debug",
roleDefinition:
"You are Roo, an expert software debugger specializing in systematic problem diagnosis and resolution.",
whenToUse:
@ -214,7 +214,7 @@ export const DEFAULT_MODES: readonly ModeConfig[] = [
},
{
slug: "orchestrator",
name: "🪃 Orchestrator",
name: "🔀 Orchestrator",
roleDefinition:
"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.",
whenToUse:

View file

@ -610,7 +610,7 @@ describe("FileRestrictionError", () => {
expect(debugMode).toBeDefined()
expect(debugMode).toMatchObject({
slug: "debug",
name: "🪲 Debug",
name: "🐛 Debug",
roleDefinition:
"You are Roo, an expert software debugger specializing in systematic problem diagnosis and resolution.",
groups: ["read", "edit", "command", "mcp"],
@ -631,7 +631,7 @@ describe("FileRestrictionError", () => {
const result = await getFullModeDetails("debug")
expect(result).toMatchObject({
slug: "debug",
name: "🪲 Debug",
name: "🐛 Debug",
roleDefinition:
"You are Roo, an expert software debugger specializing in systematic problem diagnosis and resolution.",
})