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