feat: add /download command to export agent file locally (#124)

Co-authored-by: Letta <noreply@letta.com>
This commit is contained in:
Charles Packer
2025-11-25 20:32:21 -08:00
committed by GitHub
parent 40d2055708
commit 61cb85bd83
2 changed files with 53 additions and 0 deletions

View File

@@ -85,6 +85,13 @@ export const commands: Record<string, Command> = {
return "Opening toolset selector...";
},
},
"/download": {
desc: "Download agent file locally",
handler: () => {
// Handled specially in App.tsx to access agent ID and client
return "Downloading agent file...";
},
},
};
/**