feat: add /description command to update agent description (#193)

Co-authored-by: Letta <noreply@letta.com>
This commit is contained in:
Charles Packer
2025-12-12 15:06:08 -08:00
committed by GitHub
parent 7e8bc50f68
commit 226d20fbae
2 changed files with 72 additions and 0 deletions

View File

@@ -72,6 +72,13 @@ export const commands: Record<string, Command> = {
return "Renaming agent...";
},
},
"/description": {
desc: "Update the current agent's description",
handler: () => {
// Handled specially in App.tsx to access agent ID and client
return "Updating description...";
},
},
"/swap": {
desc: "Alias for /resume",
hidden: true, // Hidden - use /resume instead