feat: add toolset switching UI (#115)

This commit is contained in:
Charles Packer
2025-11-23 20:02:04 -08:00
committed by GitHub
parent 836a488263
commit 592ed66e1b
4 changed files with 236 additions and 0 deletions

View File

@@ -78,6 +78,13 @@ export const commands: Record<string, Command> = {
return "Swapping agent...";
},
},
"/toolset": {
desc: "Switch toolset (codex/default)",
handler: () => {
// Handled specially in App.tsx to access agent ID and client
return "Opening toolset selector...";
},
},
};
/**