Remove agent cycling and enhance model selector display

- Remove Tab/Shift+Tab shortcuts for cycling agents
- Remove Next/Previous Agent commands from command palette
- Remove handleCycleAgent and handleCycleAgentReverse functions
- Remove Tab keyboard hint from agent selector UI
- Enhance model selector to show provider/modelId below model name
- Widen model selector button to accommodate additional text
This commit is contained in:
Shantur Rathore
2025-10-24 12:35:53 +01:00
parent 7dbda45fb9
commit b24c7a572f
4 changed files with 14 additions and 115 deletions

View File

@@ -102,16 +102,9 @@ export default function AgentSelector(props: AgentSelectorProps) {
</Select.Content>
</Select.Portal>
</Select>
<div class="flex items-center gap-1">
<Show when={availableAgents().length > 1}>
<span class="text-xs text-gray-400">
<Kbd>Tab</Kbd>
</span>
</Show>
<span class="text-xs text-gray-400">
<Kbd shortcut="cmd+shift+a" />
</span>
</div>
<span class="text-xs text-gray-400">
<Kbd shortcut="cmd+shift+a" />
</span>
</div>
)
}