From b195b2a70dc54df7e16edc5569a471ea4b8a4201 Mon Sep 17 00:00:00 2001 From: Charles Packer Date: Thu, 18 Dec 2025 12:52:20 -0800 Subject: [PATCH] chore: hide /compact command from autocomplete (#300) Co-authored-by: Letta --- src/cli/commands/registry.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cli/commands/registry.ts b/src/cli/commands/registry.ts index a984275..bcf052c 100644 --- a/src/cli/commands/registry.ts +++ b/src/cli/commands/registry.ts @@ -40,6 +40,7 @@ export const commands: Record = { }, "/compact": { desc: "Summarize conversation history (compaction)", + hidden: true, handler: () => { // Handled specially in App.tsx to access client and agent ID return "Compacting conversation...";