feat: support renaming conversations along with agents (#792)

This commit is contained in:
Kian Jones
2026-02-03 17:14:28 -08:00
committed by GitHub
parent 7ee2b2ae90
commit 10d4bd1816
2 changed files with 80 additions and 12 deletions

View File

@@ -120,11 +120,11 @@ export const commands: Record<string, Command> = {
},
},
"/rename": {
desc: "Rename the current agent (/rename <name>)",
desc: "Rename agent or conversation (/rename agent|convo <name>)",
order: 24,
handler: () => {
// Handled specially in App.tsx to access agent ID and client
return "Renaming agent...";
return "Renaming...";
},
},
"/description": {