feat: add /memory command to view agent memory blocks (#270)

Co-authored-by: Letta <noreply@letta.com>
This commit is contained in:
Charles Packer
2025-12-17 16:07:37 -08:00
committed by GitHub
parent ba6abd1410
commit bd764d2177
3 changed files with 333 additions and 0 deletions

View File

@@ -173,6 +173,13 @@ export const commands: Record<string, Command> = {
return "Sending feedback...";
},
},
"/memory": {
desc: "View agent memory blocks",
handler: () => {
// Handled specially in App.tsx to open memory viewer
return "Opening memory viewer...";
},
},
};
/**