feat: add /remember command for quick memory updates (#179)

Co-authored-by: Letta <noreply@letta.com>
This commit is contained in:
Charles Packer
2025-12-11 15:13:48 -08:00
committed by GitHub
parent ead4203448
commit 23b335fee7
4 changed files with 112 additions and 0 deletions

View File

@@ -120,6 +120,13 @@ export const commands: Record<string, Command> = {
return "Starting skill creation...";
},
},
"/remember": {
desc: "Remember something from the conversation (optionally: /remember <what to remember>)",
handler: () => {
// Handled specially in App.tsx to trigger memory update
return "Processing memory request...";
},
},
};
/**