From 2da31bf2f7a06a1e5d6aeab09b91e4f89f877920 Mon Sep 17 00:00:00 2001 From: Kevin Lin Date: Fri, 20 Feb 2026 11:02:40 -0800 Subject: [PATCH] fix: update /memory command to say "memory" instead of "memory blocks" (#1058) Co-authored-by: Letta --- src/cli/App.tsx | 4 ++-- src/cli/commands/registry.ts | 2 +- src/cli/components/MemoryTabViewer.tsx | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/cli/App.tsx b/src/cli/App.tsx index 10062b7..3f4b532 100644 --- a/src/cli/App.tsx +++ b/src/cli/App.tsx @@ -2699,7 +2699,7 @@ export default function App({ ? [ "→ **/agents** list all agents", "→ **/resume** resume a previous conversation", - "→ **/memory** view your agent's memory blocks", + "→ **/memory** view your agent's memory", "→ **/init** initialize your agent's memory", "→ **/remember** teach your agent", ] @@ -11496,7 +11496,7 @@ Plan file path: ${planFilePath}`; ? [ "→ **/agents** list all agents", "→ **/resume** resume a previous conversation", - "→ **/memory** view your agent's memory blocks", + "→ **/memory** view your agent's memory", "→ **/init** initialize your agent's memory", "→ **/remember** teach your agent", ] diff --git a/src/cli/commands/registry.ts b/src/cli/commands/registry.ts index 9af7678..dd6bb42 100644 --- a/src/cli/commands/registry.ts +++ b/src/cli/commands/registry.ts @@ -66,7 +66,7 @@ export const commands: Record = { }, }, "/memory": { - desc: "View your agent's memory blocks", + desc: "View your agent's memory", order: 15, noArgs: true, handler: () => { diff --git a/src/cli/components/MemoryTabViewer.tsx b/src/cli/components/MemoryTabViewer.tsx index e8dbfcd..259b68a 100644 --- a/src/cli/components/MemoryTabViewer.tsx +++ b/src/cli/components/MemoryTabViewer.tsx @@ -160,7 +160,7 @@ export function MemoryTabViewer({ View your agent's memory - {" "}Loading memory blocks... + {" "}Loading memory... {" "}Esc cancel @@ -182,7 +182,7 @@ export function MemoryTabViewer({ View your agent's memory - {" "}No memory blocks attached to this agent. + {" "}No memory attached to this agent. {" "}Esc cancel