You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- register /profiles as built-in commands, including
autocomplete coverage and command metadata/tests
- add chat ModelSelector popover with sticky per-mode model updates, reuse it
for slash commands and toolbar button, and sync i18n copy (“Model Configuration”)
- extend ChatTextArea handling so /profiles or /models open selectors via
keyboard, reset slash state, and avoid stale filtering when typing
- overhaul ApiConfigSelector and ModelSelector popovers for arrow/enter/escape
handling, looped navigation, focus restoration, and stable search input
- constrain model search to name/ID (ignore descriptions), prevent hover from
mutating filters, and keep selected model visible even when filtered out
- update tests to cover new popover controls, alias autocomplete, and built-in
command registry
- update all relevant i18n strings
Copy file name to clipboardExpand all lines: src/services/command/built-in-commands.ts
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -284,6 +284,18 @@ Please analyze this codebase and create an AGENTS.md file containing:
284
284
285
285
Remember: The goal is to create documentation that enables AI assistants to be immediately productive in this codebase, focusing on project-specific knowledge that isn't obvious from the code structure alone.`,
286
286
},
287
+
profiles: {
288
+
name: "profiles",
289
+
description: "Open the API configuration profile selector in the chat input",
290
+
content: `Use the /profiles command in the Roo Code chat input to open the API configuration profile selector.
291
+
This built-in command updates the active API configuration profile in the chat UI and does not insert text into the conversation.`,
292
+
},
293
+
models: {
294
+
name: "models",
295
+
description: "Open the model picker for the active API configuration profile",
296
+
content: `Use /models in the Roo Code chat input to open the model picker for the active API configuration profile.
297
+
This command lets you switch the stored model for that profile directly from the chat UI.`,
0 commit comments